Lines 48-53
if ( $issue_id ) {
Link Here
|
48 |
} |
48 |
} |
49 |
my $vendor = Koha::Acquisition::Booksellers->find($booksellerid); |
49 |
my $vendor = Koha::Acquisition::Booksellers->find($booksellerid); |
50 |
|
50 |
|
|
|
51 |
unless ( $vendor ) { |
52 |
print $input->redirect("/cgi-bin/koha/errors/404.pl"); |
53 |
exit; |
54 |
} |
55 |
|
51 |
if ( $op eq 'add_form' || $op eq 'show' ) { |
56 |
if ( $op eq 'add_form' || $op eq 'show' ) { |
52 |
$template->param( issue => $issue ); |
57 |
$template->param( issue => $issue ); |
53 |
} elsif ( $op eq 'add_validate' ) { |
58 |
} elsif ( $op eq 'add_validate' ) { |
54 |
- |
|
|