Bug 11569 - [QA Followup] - Update English description for existing installations...
authorKyle M Hall <kyle@bywatersolutions.com>
Wed, 30 Dec 2015 16:25:06 +0000 (16:25 +0000)
committerKyle M Hall <kyle@bywatersolutions.com>
Wed, 30 Dec 2015 16:25:06 +0000 (16:25 +0000)
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Koha.pm
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index 18d27fc..aed2a8e 100644 (file)
--- 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;
index a46fc4b..17d6624 100755 (executable)
@@ -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.