Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 4a2714a5

Von Tamino Steinert vor 6 Tagen hinzugefügt

  • ID 4a2714a5e6489c6a6b914f2532c1e329fbb4e1ee
  • Vorgänger 10d07d12

FIX: S:P:Tag: Schließe auch Singletons

Für html ist dies nicht wichtig und wird einfach ignoriert, aber der
XML-Parser verlangt dies.
In Firefox:
XML Parsing Error: mismatched tag. Expected: </input>.
Location: http://localhost/kivitendo/controller.pl?action=ShopPart/show_files&id=1120
Line Number 29, Column 195: controller.pl:29:195

Unterschiede anzeigen:

SL/Presenter/Tag.pm
76 76
  my ($tag, $content, %params) = @_;
77 77
  my $attributes = stringify_attributes(%params);
78 78

  
79
  return "<${tag}${attributes}>" if !defined($content) && $_singleton_tags{$tag};
79
  return "<${tag}${attributes}/>" if !defined($content) && $_singleton_tags{$tag};
80 80
  return "<${tag}${attributes}>${content}</${tag}>";
81 81
}
82 82

  

Auch abrufbar als: Unified diff