From b7d36141fbf22f7d8b225d7731e59adbe0546780 Mon Sep 17 00:00:00 2001 From: Brendan Gallagher Date: Fri, 22 Apr 2016 03:19:56 +0000 Subject: [PATCH] DBRev update - Bug 5979 - Add separate OPACISBD system preference --- Koha.pm | 2 +- .../atomicupdate/bug_5979-add_opacisbd_syspref.sql | 1 - installer/data/mysql/updatedatabase.pl | 12 ++++++++++++ 3 files changed, 13 insertions(+), 2 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_5979-add_opacisbd_syspref.sql diff --git a/Koha.pm b/Koha.pm index 54517b6042..dd3435f2d5 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.047"; +$VERSION = "3.23.00.048"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_5979-add_opacisbd_syspref.sql b/installer/data/mysql/atomicupdate/bug_5979-add_opacisbd_syspref.sql deleted file mode 100644 index 735d0228bc..0000000000 --- a/installer/data/mysql/atomicupdate/bug_5979-add_opacisbd_syspref.sql +++ /dev/null @@ -1 +0,0 @@ -INSERT IGNORE INTO `systempreferences` (variable,value,options,explanation,type) SELECT 'OPACISBD', value, '70|10', 'Allows to define ISBD view in OPAC', 'Textarea' FROM `systempreferences` WHERE variable = 'ISBD'; diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 422ce69e9d..763ad80579 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -12219,6 +12219,18 @@ if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { print "Upgrade to $DBversion done (Bug 15008 - Add custom HTML areas to circulation and reports home pages)\n"; SetVersion($DBversion); } + +$DBversion = "3.23.00.048"; +if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { + $dbh->do(q{ + INSERT IGNORE INTO `systempreferences` (variable,value,options,explanation,type) SELECT 'OPACISBD', value, '70|10', 'Allows to define ISBD view in OPAC', 'Textarea' FROM `systempreferences` WHERE variable = 'ISBD'; + }); + + print "Upgrade to $DBversion done (Bug 5979 - Add separate OPACISBD system preference)\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.2