From: Owen Leonard Date: Wed, 20 Apr 2011 19:23:02 +0000 (-0400) Subject: Fix for bug 6243 - Link to fast cataloging missing from circulation home page X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=514a60270cc27a555f0587ef6211aabdba9a8cad;p=koha.git Fix for bug 6243 - Link to fast cataloging missing from circulation home page Signed-off-by: Nicole C. Engard Signed-off-by: Chris Cormack --- diff --git a/circ/circulation-home.pl b/circ/circulation-home.pl index e4aef3b199..842f8d965d 100755 --- a/circ/circulation-home.pl +++ b/circ/circulation-home.pl @@ -35,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;