From 1b6a3d85a922486c6ffa711806ed47007c2523f0 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 29 Apr 2016 14:02:52 +0000 Subject: [PATCH] Bug 16167 - DBRev 3.23.00.059 Signed-off-by: Kyle M Hall --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_16167.sql | 1 - installer/data/mysql/updatedatabase.pl | 10 ++++++++++ 3 files changed, 11 insertions(+), 2 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_16167.sql diff --git a/Koha.pm b/Koha.pm index 4bfbada8ba..92c0e6236b 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.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 index 9cd45f5b34..0000000000 --- a/installer/data/mysql/atomicupdate/bug_16167.sql +++ /dev/null @@ -1 +0,0 @@ -DELETE FROM systempreferences WHERE variable="AuthorisedValueImages" OR variable="StaffAuthorisedValueImages"; diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index f3f446328a..92523ac1d4 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -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 -- 2.39.2