From 514a60270cc27a555f0587ef6211aabdba9a8cad Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Wed, 20 Apr 2011 15:23:02 -0400 Subject: [PATCH] Fix for bug 6243 - Link to fast cataloging missing from circulation home page Signed-off-by: Nicole C. Engard Signed-off-by: Chris Cormack --- circ/circulation-home.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.20.1