Bug 8826 - Initialization of hash triggers error log entries - Followup
[koha.git] / circ / circulation-home.pl
index 2ebd0d0..842f8d9 100755 (executable)
@@ -17,6 +17,7 @@
 # 
 
 use strict;
+#use warnings; FIXME - Bug 2505
 use CGI;
 use C4::Auth;
 use C4::Output;
@@ -34,7 +35,7 @@ my ($template, $loggedinuser, $cookie)
 
 # Checking if there is a Fast Cataloging Framework
 my $fa = getframeworkinfo('FA');
-$template->param({ fast_cataloging => 1 }) if (defined $fa);
+$template->param( fast_cataloging => 1 ) if (defined $fa);
 
 
 output_html_with_http_headers $query, $cookie, $template->output;