[Koha-patches] [PATCH] Update yuipath syspref

Frederic Demians f.demians at tamil.fr
Fri Apr 18 19:53:43 CEST 2008


If syspref points to online 2.3.1 YUI version, edit it to 2.5.1.
---
 installer/data/mysql/updatedatabase.pl |   11 +++++++++++
 kohaversion.pl                         |    2 +-
 2 files changed, 12 insertions(+), 1 deletions(-)

diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl
index e8fedf1..e227701 100755
--- a/installer/data/mysql/updatedatabase.pl
+++ b/installer/data/mysql/updatedatabase.pl
@@ -1281,6 +1281,17 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
     SetVersion ($DBversion);
 }
 
+$DBversion = "3.00.00.070";
+if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
+    $sth = $dbh->prepare("SELECT value FROM systempreferences WHERE variable='yuipath'");
+    $sth->execute;
+    my ($value) = $sth->fetchrow;
+    $value =~ s/2.3.1/2.5.1/;
+    $dbh->do("UPDATE systempreferences SET value='$value' WHERE variable='yuipath';");
+	print "Update yuipath syspref to 2.5.1 if necessary\n";
+    SetVersion ($DBversion);
+}
+
 =item DropAllForeignKeys($table)
 
   Drop all foreign keys of the table $table
diff --git a/kohaversion.pl b/kohaversion.pl
index 3660838..938e935 100644
--- a/kohaversion.pl
+++ b/kohaversion.pl
@@ -10,7 +10,7 @@
 use strict;
 
 sub kohaversion {
-    our $VERSION = "3.00.00.069";
+    our $VERSION = "3.00.00.070";
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install
-- 
1.5.3.7




More information about the Koha-patches mailing list