From 22712532b4b316d5735a2b1ee6a8ac52b1e2c4be Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 21 Apr 2011 14:48:34 -0400 Subject: [PATCH] Fix for bug 6243 - Link to fast cataloging missing from circulation home page Content-Type: text/plain; charset="utf-8" --- circ/circulation-home.pl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/circ/circulation-home.pl b/circ/circulation-home.pl index e4aef3b..842f8d9 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; -- 1.7.3