From 783071b89425426f338fc8d6ff9540191009aa8f Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Fri, 8 Feb 2013 16:44:10 +0100 Subject: [PATCH] =?utf8?q?L:=20hidden=5Ftag():=20Parameter=C3=BCbergabe=20?= =?utf8?q?gefixt?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- SL/Template/Plugin/L.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SL/Template/Plugin/L.pm b/SL/Template/Plugin/L.pm index 189ef2dbe..871e683bf 100644 --- 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 { -- 2.20.1