From 754dc7e0f59d17093ffaa1781dd186f0bea0e764 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 12 Feb 2016 11:47:22 +0000 Subject: [PATCH] Bug 15747: Do not use CGI->param in list context - Auth.pm Test plan: No idea! --- C4/Auth.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Auth.pm b/C4/Auth.pm index 9481f73..4ccacd8 100644 --- a/C4/Auth.pm +++ b/C4/Auth.pm @@ -398,7 +398,7 @@ sub get_template_and_user { $template->param( dateformat => C4::Context->preference('dateformat') ); } - $template->param(auth_forwarded_hash => $in->{'query'}->param('auth_forwarded_hash')); + $template->param(auth_forwarded_hash => scalar $in->{'query'}->param('auth_forwarded_hash')); # these template parameters are set the same regardless of $in->{'type'} -- 2.7.0