@@ -, +, @@ --> Confirmation page shows fund name as '' and fund amount as 0.00 --> The fund is still there --> Confirmation shows empty values for currency and rate --> An error message appears and the currency is not deleted --> Confirmation pages display correct information, and deletions occur successfully --- admin/aqbudgets.pl | 2 +- admin/currency.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- a/admin/aqbudgets.pl +++ a/admin/aqbudgets.pl @@ -185,7 +185,7 @@ if ($op eq 'add_form') { #---------------------- DEFAULT DISPLAY BELOW --------------------- # called by default form, used to confirm deletion of data in DB -} elsif ($op eq 'cud-delete_confirm') { +} elsif ($op eq 'delete_confirm') { my $budget = GetBudget($budget_id); $template->param( --- a/admin/currency.pl +++ a/admin/currency.pl @@ -91,7 +91,7 @@ if ( $op eq 'add_form' ) { } $searchfield = q||; $op = 'list'; -} elsif ( $op eq 'cud-delete_confirm' ) { +} elsif ( $op eq 'delete_confirm' ) { my $currency = Koha::Acquisition::Currencies->find($currency_code); my $nb_of_orders = Koha::Acquisition::Orders->search( { currency => $currency->currency } )->count; --