From cca42b1e41a40fd66d0c946aae7b02455e9fa595 Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Tue, 15 Jun 2010 09:59:40 +1200 Subject: [PATCH] Bug 4472 - Missing / in img tags breaking xslt (and other img tags) --- misc/translator/tmpl_process3.pl | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/misc/translator/tmpl_process3.pl b/misc/translator/tmpl_process3.pl index dbbe18e9b3..af0cde18d5 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; } -- 2.39.2