Bug 4941 - DBRev 3.23.00.027
authorKyle M Hall <kyle@bywatersolutions.com>
Fri, 26 Feb 2016 12:28:55 +0000 (12:28 +0000)
committerKyle M Hall <kyle@bywatersolutions.com>
Fri, 26 Feb 2016 12:28:55 +0000 (12:28 +0000)
Koha.pm
installer/data/mysql/atomicupdate/bug_4941-remove_singleBranchMode.perl [deleted file]
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index c4c518b..27d6dd0 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.026";
+$VERSION = "3.23.00.027";
 
 sub version {
     return $VERSION;
diff --git a/installer/data/mysql/atomicupdate/bug_4941-remove_singleBranchMode.perl b/installer/data/mysql/atomicupdate/bug_4941-remove_singleBranchMode.perl
deleted file mode 100644 (file)
index 34ef9c6..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-use Modern::Perl;
-use C4::Context;
-
-my $dbh = C4::Context->dbh;
-
-my ( $db_value ) = $dbh->selectrow_array(q|SELECT count(*) FROM branches|);
-my $pref_value = C4::Context->preference("singleBranchMode") || 0;
-if ( $db_value > 1 and $pref_value == 1 ) {
-    warn "WARNING: You have more than 1 libraries in your branches tables but the singleBranchMode system preference is on.\n";
-    warn "This configuration does not make sense. The system preference is going to be deleted,\n";
-    warn "and this parameter will be based on the number of libraries defined.\n";
-}
-$dbh->do(q|DELETE FROM systempreferences WHERE variable="singleBranchMode"|);
index 5c52dae..722c5d3 100755 (executable)
@@ -11830,6 +11830,21 @@ if ( CheckVersion($DBversion) ) {
     SetVersion($DBversion);
 }
 
+$DBversion = "3.23.00.027";
+if ( CheckVersion($DBversion) ) {
+    my ( $db_value ) = $dbh->selectrow_array(q|SELECT count(*) FROM branches|);
+    my $pref_value = C4::Context->preference("singleBranchMode") || 0;
+    if ( $db_value > 1 and $pref_value == 1 ) {
+        warn "WARNING: You have more than 1 libraries in your branches tables but the singleBranchMode system preference is on.\n";
+        warn "This configuration does not make sense. The system preference is going to be deleted,\n";
+        warn "and this parameter will be based on the number of libraries defined.\n";
+    }
+    $dbh->do(q|DELETE FROM systempreferences WHERE variable="singleBranchMode"|);
+
+    print "Upgrade to $DBversion done (Bug 4941 - Can't set branch in staff client when singleBranchMode is enabled)\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.