@@ -, +, @@ --- Koha/Plugins/Base.pm | 2 +- opac/ilsdi.pl | 4 ++-- svc/members/search | 2 +- svc/virtualshelves/search | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) --- a/Koha/Plugins/Base.pm +++ a/Koha/Plugins/Base.pm @@ -117,7 +117,7 @@ sub get_template { $template->param( CLASS => $self->{'class'}, - METHOD => $self->{'cgi'}->param('method'), + METHOD => scalar $self->{'cgi'}->param('method'), PLUGIN_PATH => $self->get_plugin_http_path(), ); --- a/opac/ilsdi.pl +++ a/opac/ilsdi.pl @@ -128,7 +128,7 @@ unless ( $cgi->param('service') ) { } # If user requested a service description, then display it -if ( $cgi->param('service') eq "Describe" and any { $cgi->param('verb') eq $_ } @services ) { +if ( scalar $cgi->param('service') eq "Describe" and any { scalar $cgi->param('verb') eq $_ } @services ) { my ( $template, $loggedinuser, $cookie ) = get_template_and_user( { template_name => "ilsdi.tt", query => $cgi, @@ -137,7 +137,7 @@ if ( $cgi->param('service') eq "Describe" and any { $cgi->param('verb') eq $_ } debug => 1, } ); - $template->param( $cgi->param('verb') => 1 ); + $template->param( scalar $cgi->param('verb') => 1 ); output_html_with_http_headers $cgi, $cookie, $template->output; exit 0; } --- a/svc/members/search +++ a/svc/members/search @@ -31,7 +31,7 @@ my $input = new CGI; exit unless $input->param('template_path'); my ($template, $user, $cookie) = get_template_and_user({ - template_name => $input->param('template_path'), + template_name => scalar $input->param('template_path'), query => $input, type => "intranet", authnotrequired => 0, --- a/svc/virtualshelves/search +++ a/svc/virtualshelves/search @@ -13,7 +13,7 @@ my $input = new CGI; exit unless $input->param('template_path'); my ($template, $user, $cookie) = get_template_and_user({ - template_name => $input->param('template_path'), + template_name => scalar $input->param('template_path'), query => $input, type => "intranet", authnotrequired => 0, --