projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2447f51
)
texarea tags müssen immer numerische Werte in cols und rows haben.
author
Sven Schöling
<s.schoeling@linet-services.de>
Mon, 17 Oct 2011 08:22:13 +0000
(10:22 +0200)
committer
Sven Schöling
<s.schoeling@linet-services.de>
Mon, 17 Oct 2011 08:22:13 +0000
(10:22 +0200)
SL/Template/Plugin/L.pm
patch
|
blob
|
history
diff --git
a/SL/Template/Plugin/L.pm
b/SL/Template/Plugin/L.pm
index
d7db2a2
..
eff4548
100644
(file)
--- a/
SL/Template/Plugin/L.pm
+++ b/
SL/Template/Plugin/L.pm
@@
-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);