Bug 16167 - DBRev 3.23.00.059
authorKyle M Hall <kyle@bywatersolutions.com>
Fri, 29 Apr 2016 14:02:52 +0000 (14:02 +0000)
committerKyle M Hall <kyle@bywatersolutions.com>
Fri, 29 Apr 2016 14:02:52 +0000 (14:02 +0000)
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Koha.pm
installer/data/mysql/atomicupdate/bug_16167.sql [deleted file]
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index 4bfbada..92c0e62 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.058";
+$VERSION = "3.23.00.059";
 
 sub version {
     return $VERSION;
diff --git a/installer/data/mysql/atomicupdate/bug_16167.sql b/installer/data/mysql/atomicupdate/bug_16167.sql
deleted file mode 100644 (file)
index 9cd45f5..0000000
+++ /dev/null
@@ -1 +0,0 @@
-DELETE FROM systempreferences WHERE variable="AuthorisedValueImages" OR variable="StaffAuthorisedValueImages";
index f3f4463..92523ac 100755 (executable)
@@ -12525,6 +12525,16 @@ if ( CheckVersion($DBversion) ) {
     SetVersion($DBversion);
 }
 
+$DBversion = "3.23.00.059";
+if ( CheckVersion($DBversion) ) {
+    $dbh->do(q{
+        DELETE FROM systempreferences WHERE variable="AuthorisedValueImages" OR variable="StaffAuthorisedValueImages";
+    });
+
+    print "Upgrade to $DBversion done (Bug 16167 - Remove prefs to drive authorised value images)\n";
+    SetVersion($DBversion);
+}
+
 
 # DEVELOPER PROCESS, search for anything to execute in the db_update directory
 # SEE bug 13068