[Koha-patches] [PATCH] Bug 4472 - Missing / in img tags breaking xslt (and other img tags)

Chris Cormack chrisc at catalyst.net.nz
Tue Jun 15 00:01:54 CEST 2010


---
 misc/translator/tmpl_process3.pl |   14 ++++++++++----
 1 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/misc/translator/tmpl_process3.pl b/misc/translator/tmpl_process3.pl
index dbbe18e..af0cde1 100755
--- a/misc/translator/tmpl_process3.pl
+++ b/misc/translator/tmpl_process3.pl
@@ -74,10 +74,16 @@ sub text_replace_tag ($$) {
             sprintf(' %s=%s', $_, $attr->{$_}->[2]) #FIXME
         } sort {
             $attr->{$a}->[3] <=> $attr->{$b}->[3] #FIXME
-        } keys %$attr)
-        . '>';
-    } else {
-    $it = $t;
+        } keys %$attr);
+	if ($tag eq 'img'){
+	    $it .= ' />';
+	}
+	else {	    
+           $it .= ' >';
+	}
+    } 
+    else {
+        $it = $t;
     }
     return $it;
 }
-- 
1.6.3.3



More information about the Koha-patches mailing list