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:
6f07840
)
L: hidden_tag(): Parameterübergabe gefixt
author
Moritz Bunkus
<m.bunkus@linet-services.de>
Fri, 8 Feb 2013 15:44:10 +0000
(16:44 +0100)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Fri, 8 Feb 2013 15:45:19 +0000
(16:45 +0100)
SL/Template/Plugin/L.pm
patch
|
blob
|
history
diff --git
a/SL/Template/Plugin/L.pm
b/SL/Template/Plugin/L.pm
index
189ef2d
..
871e683
100644
(file)
--- a/
SL/Template/Plugin/L.pm
+++ b/
SL/Template/Plugin/L.pm
@@
-283,7
+283,8
@@
sub input_tag {
}
sub hidden_tag {
- return shift->input_tag(@_, type => 'hidden');
+ my ($self, $name, $value, @slurp) = @_;
+ return $self->input_tag($name, $value, _hashify(@slurp), type => 'hidden');
}
sub div_tag {