From 5a21bbe24d6d0b30438f93b8f15d668d546a5edf Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Wed, 30 Dec 2015 16:25:06 +0000 Subject: [PATCH] Bug 11569 - [QA Followup] - Update English description for existing installations, DBrev 3.23.00.005 Signed-off-by: Kyle M Hall --- Koha.pm | 2 +- installer/data/mysql/updatedatabase.pl | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/Koha.pm b/Koha.pm index 18d27fc491..aed2a8e70e 100644 --- a/Koha.pm +++ b/Koha.pm @@ -29,7 +29,7 @@ use vars qw{ $VERSION }; # - #4 : the developer version. The 4th number is the database subversion. # used by developers when the database changes. updatedatabase take care of the changes itself # and is automatically called by Auth.pm when needed. -$VERSION = "3.23.00.004"; +$VERSION = "3.23.00.005"; sub version { return $VERSION; diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index a46fc4b5ba..17d66245d8 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -11438,6 +11438,18 @@ if ( CheckVersion($DBversion) ) { SetVersion($DBversion); } +$DBversion = "3.23.00.005"; +if ( CheckVersion($DBversion) ) { + $dbh->do(q{ + UPDATE permissions SET description = 'Manage circulation rules' WHERE description = 'manage circulation rules' + }); + $dbh->do(q{ + UPDATE permissions SET description = 'Manage staged MARC records, including completing and reversing imports' WHERE description = 'Managed staged MARC records, including completing and reversing imports' + }); + print "Upgrade to $DBversion done (Bug 11569 - Typo in userpermissions.sql)\n"; + SetVersion($DBversion); +} + # DEVELOPER PROCESS, search for anything to execute in the db_update directory # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. -- 2.39.5