@@ -, +, @@ in list context" --------- -- this time should not be there. --- C4/Auth.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/C4/Auth.pm +++ a/C4/Auth.pm @@ -398,7 +398,8 @@ sub get_template_and_user { $template->param( dateformat => C4::Context->preference('dateformat') ); } - $template->param(auth_forwarded_hash => $in->{'query'}->param('auth_forwarded_hash')); + my $auth_forwarded_hash = $in->{'query'}->param('auth_forwarded_hash'); + $template->param(auth_forwarded_hash => $auth_forwarded_hash); # these template parameters are set the same regardless of $in->{'type'} --