Bug 5549 : Koha::Calendar::addDate should not loop on -1
[koha.git] / circ / circulation-home.pl
index 4ac5267..842f8d9 100755 (executable)
 # 
 
 use strict;
+#use warnings; FIXME - Bug 2505
 use CGI;
 use C4::Auth;
 use C4::Output;
 use C4::Context;
-
+use C4::Koha;
 
 my $query = new CGI;
 my ($template, $loggedinuser, $cookie)
@@ -32,4 +33,9 @@ my ($template, $loggedinuser, $cookie)
                                flagsrequired => {circulate => "circulate_remaining_permissions"},
                                });
 
+# Checking if there is a Fast Cataloging Framework
+my $fa = getframeworkinfo('FA');
+$template->param( fast_cataloging => 1 ) if (defined $fa);
+
+
 output_html_with_http_headers $query, $cookie, $template->output;