Lines 547-552
if ($biblionumber) {
Link Here
|
547 |
|
547 |
|
548 |
$biblio = Koha::Biblios->find($biblionumber); |
548 |
$biblio = Koha::Biblios->find($biblionumber); |
549 |
|
549 |
|
|
|
550 |
# just in case $biblionumber obtained from CGI contains a weird characters like space |
551 |
$biblionumber = $biblio->biblionumber if $biblio; |
550 |
if ($biblio) { |
552 |
if ($biblio) { |
551 |
unless ( $biblio->can_be_edited($logged_in_patron) ) { |
553 |
unless ( $biblio->can_be_edited($logged_in_patron) ) { |
552 |
print $input->redirect("/cgi-bin/koha/errors/403.pl"); # escape early |
554 |
print $input->redirect("/cgi-bin/koha/errors/403.pl"); # escape early |
553 |
- |
|
|