textarea_tag: Content ging durch Verwechslung then/else verloren
authorMoritz Bunkus <m.bunkus@linet-services.de>
Mon, 27 Dec 2010 12:48:50 +0000 (13:48 +0100)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Mon, 27 Dec 2010 12:48:50 +0000 (13:48 +0100)
SL/Template/Plugin/L.pm

index aaff9ef..ac31e31 100644 (file)
@@ -84,7 +84,7 @@ sub textarea_tag {
   my %attributes      = _hashify(@_);
 
   $attributes{id}   ||= $self->name_to_id($name);
-  $content            = $content ? '' : _H($content);
+  $content            = $content ? _H($content) : '';
 
   return $self->html_tag('textarea', $content, %attributes, name => $name);
 }