Revision c4e27e00
Von Moritz Bunkus vor fast 14 Jahren hinzugefügt
SL/Template/Plugin/L.pm | ||
---|---|---|
48 | 48 |
my @result = (); |
49 | 49 |
while (my ($name, $value) = each %options) { |
50 | 50 |
next unless $name; |
51 |
$value ||= '';
|
|
51 |
$value = '' if !defined($value);
|
|
52 | 52 |
push @result, _H($name) . '="' . _H($value) . '"'; |
53 | 53 |
} |
54 | 54 |
|
Auch abrufbar als: Unified diff
Select-Optionen: "value" für "0" richtig erzeugen
Vorher: <option value="">...</option>
Jetzt: <option value="0">...</option>