From: Sven Schöling Date: Mon, 17 Oct 2011 08:18:59 +0000 (+0200) Subject: Wir verwenden kein XHTML sondern HTML, also contentlose tags nicht mit /> zumachen. X-Git-Tag: release-2.7.0beta1~215^2~22 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=2447f51198063015c4b3a890dfafac88b7555565;p=kivitendo-erp.git Wir verwenden kein XHTML sondern HTML, also contentlose tags nicht mit /> zumachen. --- diff --git a/SL/Template/Plugin/L.pm b/SL/Template/Plugin/L.pm index bf0d5414e..d7db2a239 100644 --- a/SL/Template/Plugin/L.pm +++ b/SL/Template/Plugin/L.pm @@ -74,7 +74,7 @@ sub html_tag { my ($self, $tag, $content, @slurp) = @_; my $attributes = $self->attributes(@slurp); - return "<${tag}${attributes}/>" unless defined($content); + return "<${tag}${attributes}>" unless defined($content); return "<${tag}${attributes}>${content}"; }