texarea tags müssen immer numerische Werte in cols und rows haben.
authorSven Schöling <s.schoeling@linet-services.de>
Mon, 17 Oct 2011 08:22:13 +0000 (10:22 +0200)
committerSven Schöling <s.schoeling@linet-services.de>
Mon, 17 Oct 2011 08:22:13 +0000 (10:22 +0200)
SL/Template/Plugin/L.pm

index d7db2a2..eff4548 100644 (file)
@@ -95,6 +95,8 @@ sub textarea_tag {
   my %attributes      = _hashify(@slurp);
 
   $attributes{id}   ||= $self->name_to_id($name);
+  $attributes{rows}  *= 1; # required by standard
+  $attributes{cols}  *= 1; # required by standard
   $content            = $content ? _H($content) : '';
 
   return $self->html_tag('textarea', $content, %attributes, name => $name);