DBRev update - Bug 5979 - Add separate OPACISBD system preference
authorBrendan Gallagher <bredan@bywatersolutions.com>
Fri, 22 Apr 2016 03:19:56 +0000 (03:19 +0000)
committerBrendan Gallagher <bredan@bywatersolutions.com>
Fri, 22 Apr 2016 03:19:56 +0000 (03:19 +0000)
Koha.pm
installer/data/mysql/atomicupdate/bug_5979-add_opacisbd_syspref.sql [deleted file]
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index 54517b6..dd3435f 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.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 (file)
index 735d022..0000000
+++ /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';
index 422ce69..763ad80 100755 (executable)
@@ -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.