Lines 40-45
plugin that shows a stats on borrowers
Link Here
|
40 |
=cut |
40 |
=cut |
41 |
|
41 |
|
42 |
my $input = new CGI; |
42 |
my $input = new CGI; |
|
|
43 |
|
44 |
# if OpacTopissue is disabled, leave immediately |
45 |
if ( ! C4::Context->preference('OpacTopissue') ) { |
46 |
print $input->redirect("/cgi-bin/koha/errors/404.pl"); |
47 |
exit; |
48 |
} |
49 |
|
43 |
my $branches = GetBranches(); |
50 |
my $branches = GetBranches(); |
44 |
my $itemtypes = GetItemTypes(); |
51 |
my $itemtypes = GetItemTypes(); |
45 |
|
52 |
|
46 |
- |
|
|