Bug 17698: (follow-up) Fixing things in Comment 57
[koha.git] / circ / circulation-home.pl
index 3821007..1d08a03 100755 (executable)
 # along with Koha; if not, see <http://www.gnu.org/licenses>.
 # 
 
-use strict;
-#use warnings; FIXME - Bug 2505
+use Modern::Perl;
 use CGI qw ( -utf8 );
 use C4::Auth;
 use C4::Output;
 use C4::Context;
-use C4::Koha;
+use Koha::BiblioFrameworks;
+use Koha::Checkouts;
 
 my $query = new CGI;
 my ($template, $loggedinuser, $cookie, $flags) = get_template_and_user(
@@ -36,12 +36,8 @@ my ($template, $loggedinuser, $cookie, $flags) = get_template_and_user(
 );
 
 # 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 Koha::BiblioFrameworks->find( 'FA' );
 
-# Checking if the transfer page needs to be displayed
-$template->param( display_transfer => 1 ) if ( ($flags->{'superlibrarian'} == 1) || (C4::Context->preference("IndependentBranches") == 0) );
 $template->{'VARS'}->{'AllowOfflineCirculation'} = C4::Context->preference('AllowOfflineCirculation');
 
-
 output_html_with_http_headers $query, $cookie, $template->output;