Bug 17602: Fix few minor QA issues
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Wed, 8 Nov 2017 13:18:53 +0000 (10:18 -0300)
committerNick Clemens <nick@bywatersolutions.com>
Mon, 1 Oct 2018 13:56:56 +0000 (13:56 +0000)
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
opac/opac-recordedbooks-search.pl

index ba1ef7f..4a390b3 100755 (executable)
 # You should have received a copy of the GNU General Public License
 # along with Koha; if not, see <http://www.gnu.org/licenses>.
 
-use strict;
-use warnings;
+use Modern::Perl;
 
-use CGI qw ( -utf8 );
+use CGI qw( -utf8 );
 
-use C4::Auth qw(:DEFAULT);
+use C4::Auth;
 use C4::Output;
 
 my $cgi = new CGI;
 
-# Getting the template and auth
-my ($template, $loggedinuser, $cookie)
-= get_template_and_user({template_name => "opac-recordedbooks-search.tt",
-                                query => $cgi,
-                                type => "opac",
-                                debug => 1,
-                                authnotrequired => 1,
-                                });
-
-$template->{'VARS'}->{'q'} = $cgi->param('q');
-$template->{'VARS'}->{'limit'} = C4::Context->preference('OPACnumSearchResults');
+my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
+    {
+        template_name   => "opac-recordedbooks-search.tt",
+        query           => $cgi,
+        type            => "opac",
+        debug           => 1,
+        authnotrequired => 1,
+    }
+);
+
+$template->param(
+    q     => scalar $cgi->param('q'),
+    limit => C4::Context->preference('OPACnumSearchResults'),
+);
 
 output_html_with_http_headers $cgi, $cookie, $template->output;