X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=circ%2Fcirculation-home.pl;h=842f8d965dfd48ca67bd3838f22505109b2ba1f6;hb=7094ea5af32ccc8fc8fad4fc0916486f1c9cfc7a;hp=4ac52675d46b871edbb387cbbb5a03097c94341c;hpb=c15e1206fdda1fa2fd366c5f38d23b0014ba4022;p=koha_fer diff --git a/circ/circulation-home.pl b/circ/circulation-home.pl index 4ac52675d4..842f8d965d 100755 --- a/circ/circulation-home.pl +++ b/circ/circulation-home.pl @@ -17,11 +17,12 @@ # 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;