@@ -, +, @@ results (e.g. a general subject heading) --> Confirm that the record is imported into the editor number that doesn't exist like 1000000, confirm you get a 404 page --- authorities/authorities.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/authorities/authorities.pl +++ a/authorities/authorities.pl @@ -553,7 +553,7 @@ if ( $op eq 'cud-change-framework' ) { my $dbh = C4::Context->dbh; my $authobj = Koha::Authorities->find($authid); -if ( defined $authid && !$authobj ) { +if ( $authid && !$authobj ) { print $input->redirect("/cgi-bin/koha/errors/404.pl"); # escape early exit; } --