L.radio_button_tag: value="" ermöglichen
authorMoritz Bunkus <m.bunkus@linet-services.de>
Fri, 3 May 2013 11:26:53 +0000 (13:26 +0200)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Fri, 3 May 2013 11:26:53 +0000 (13:26 +0200)
SL/Template/Plugin/L.pm

index 95f4ce1..d9deef7 100644 (file)
@@ -116,7 +116,7 @@ sub radio_button_tag {
   my ($self, $name, %attributes) = _hashify(2, @_);
 
   _set_id_attribute(\%attributes, $name);
-  $attributes{value}   = 1 unless defined $attributes{value};
+  $attributes{value}   = 1 unless exists $attributes{value};
   my $label            = delete $attributes{label};
 
   if ($attributes{checked}) {