X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=circ%2Fcirculation-home.pl;h=161158c5d8a1fed98502798cbd0467ed43cdae43;hb=d1e05b67d1196af6501a08b937ac0086be2c11f2;hp=4ccb78032a1f8ea1095d241b545f6331f99845f9;hpb=b4d14e4558f7b00762c9f822316ca99764d12f8c;p=koha.git diff --git a/circ/circulation-home.pl b/circ/circulation-home.pl index 4ccb78032a..161158c5d8 100755 --- a/circ/circulation-home.pl +++ b/circ/circulation-home.pl @@ -17,19 +17,31 @@ # 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) -= get_template_and_user({template_name => "circ/circulation-home.tmpl", - query => $query, - type => "intranet", - authnotrequired => 0, - flagsrequired => {circulate => 1}, - }); +my ($template, $loggedinuser, $cookie, $flags) = get_template_and_user( + { + template_name => "circ/circulation-home.tt", + query => $query, + type => "intranet", + authnotrequired => 0, + 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); + +# 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;