MT 2050, Follow-up, Fast Cataloging
[koha.git] / circ / circulation-home.pl
index 4ac5267..2ebd0d0 100755 (executable)
@@ -21,7 +21,7 @@ use CGI;
 use C4::Auth;
 use C4::Output;
 use C4::Context;
-
+use C4::Koha;
 
 my $query = new CGI;
 my ($template, $loggedinuser, $cookie)
@@ -32,4 +32,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;