From 3f90a71e2ec141fa2c8a88448fd58bc6e7ddf4ee Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 13 Sep 2016 15:03:55 +0100 Subject: [PATCH] Bug 16358: Do not redirect to the editor when deleting records The "Delete record" button goes to addbiblio.pl?op=delete, which incorrectly redirects to Rancor when selected. Test plan: 0/ Enable EnableAdvancedCatalogingEditor 1/ Edit a record 2/ Switch to the Advanced editor 3/ click on "View the record" 4/ Delete the record => Without this patch you are redirected to the editor => With this patch you are redirected to the advanced search --- cataloguing/addbiblio.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cataloguing/addbiblio.pl b/cataloguing/addbiblio.pl index a1f7208..7c8b66f 100755 --- a/cataloguing/addbiblio.pl +++ b/cataloguing/addbiblio.pl @@ -736,11 +736,12 @@ if ($frameworkcode eq 'FA'){ 'stickyduedate' => $fa_stickyduedate, 'duedatespec' => $fa_duedatespec, ); -} elsif ( C4::Context->preference('EnableAdvancedCatalogingEditor') && $input->cookie( 'catalogue_editor_' . $loggedinuser ) eq 'advanced' && !$breedingid ) { +} elsif ( $op ne "delete" && C4::Context->preference('EnableAdvancedCatalogingEditor') && $input->cookie( 'catalogue_editor_' . $loggedinuser ) eq 'advanced' && !$breedingid ) { # Only use the advanced editor for non-fast-cataloging. # breedingid is not handled because those would only come off a Z39.50 # search initiated by the basic editor. print $input->redirect( '/cgi-bin/koha/cataloguing/editor.pl' . ( $biblionumber ? ( '#catalog/' . $biblionumber ) : '' ) ); + exit; } my $frameworkcodeloop = Koha::BiblioFrameworks->search({}, { order_by => ['frameworktext'] }); -- 2.8.1