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:
93bae7a
)
textarea_tag: Content ging durch Verwechslung then/else verloren
author
Moritz Bunkus
<m.bunkus@linet-services.de>
Mon, 27 Dec 2010 12:48:50 +0000
(13:48 +0100)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Mon, 27 Dec 2010 12:48:50 +0000
(13:48 +0100)
SL/Template/Plugin/L.pm
patch
|
blob
|
history
diff --git
a/SL/Template/Plugin/L.pm
b/SL/Template/Plugin/L.pm
index
aaff9ef
..
ac31e31
100644
(file)
--- a/
SL/Template/Plugin/L.pm
+++ b/
SL/Template/Plugin/L.pm
@@
-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);
}