From b774d0ecb29ca09d5f6b574fc824ffacdb86f3a7 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 26 Mar 2015 09:30:11 +0100 Subject: [PATCH] [PASSED QA] Bug 5002: Show all patron categories after insert + wording changes. How I tested: - edit an existing patron category - save the change - redirect is to the categories table - it shows all categories OK - wording OK as well Signed-off-by: Marc Veron Signed-off-by: Kyle M Hall --- admin/categorie.pl | 2 +- .../prog/en/modules/admin/categorie.tt | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/admin/categorie.pl b/admin/categorie.pl index 60d2c84..bb0b72e 100755 --- a/admin/categorie.pl +++ b/admin/categorie.pl @@ -257,7 +257,6 @@ elsif ( $op eq 'add_validate' ) { if ( $inserted ) { push @messages, { type => 'message', code => 'success_on_insert' }; } else { - $searchfield = q||; push @messages, { type => 'error', code => 'error_on_insert' }; } } @@ -267,6 +266,7 @@ elsif ( $op eq 'add_validate' ) { { categorycode => $input->param('categorycode') }, $template ); } + $searchfield = q||; $op = 'list'; # END $OP eq ADD_VALIDATE diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categorie.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categorie.tt index 281d24a..769a0bc 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categorie.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categorie.tt @@ -111,13 +111,13 @@
[% SWITCH m.code %] [% CASE 'error_on_insert' %] - An error occurred when inserting this patron category. Perhaps the category code already exists. + An error occurred when inserting this patron category. The patron category might already exist. [% CASE 'error_on_delete' %] - An error occurred when deleteing this patron category. Check the logs. + An error occurred when deleting this patron category. Check the logs. [% CASE 'success_on_insert' %] - Patron category inserted with success. + Patron category added successfully [% CASE 'success_on_delete' %] - Patron category deleted with success. + Patron category deleted successfully. [% CASE %] [% m.code %] [% END %] -- 1.7.2.5