Fixing bug 428
This commit is contained in:
parent
1cd0ea372a
commit
7e9f67d030
1 changed files with 13 additions and 1 deletions
14
bookcount.pl
14
bookcount.pl
|
@ -29,6 +29,8 @@ use C4::Context;
|
|||
use C4::Search;
|
||||
use C4::Circulation::Circ2;
|
||||
use C4::Output;
|
||||
use C4::Koha;
|
||||
use C4::Auth;
|
||||
use HTML::Template;
|
||||
|
||||
# get all the data ....
|
||||
|
@ -61,7 +63,17 @@ if (not $lastmove) {
|
|||
}
|
||||
|
||||
# make the page ...
|
||||
my $template = gettemplate("bookcount.tmpl");
|
||||
|
||||
my ($template, $loggedinuser, $cookie)
|
||||
= get_template_and_user({template_name => "bookcount.tmpl",
|
||||
query => $input,
|
||||
type => "intranet",
|
||||
authnotrequired => 0,
|
||||
flagsrequired => {borrowers => 1},
|
||||
debug => 1,
|
||||
});
|
||||
|
||||
|
||||
|
||||
my @branchloop;
|
||||
|
||||
|
|
Loading…
Reference in a new issue