From 27a1017e44eb0ef67d8fe028a8e74b1a4c1e48eb Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Thu, 23 May 2013 09:04:44 -0700 Subject: [PATCH] bug 10052: DBrev 3.13.00.005 Signed-off-by: Galen Charlton --- installer/data/mysql/updatedatabase.pl | 8 ++------ kohaversion.pl | 2 +- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index fa7a02f397..3134261567 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -6957,14 +6957,12 @@ if(CheckVersion($DBversion)) { SetVersion($DBversion); } - - -$DBversion = "3.11.00.XXX"; +$DBversion = "3.13.00.005"; if(CheckVersion($DBversion)) { my $intra= C4::Context->preference("intranetstylesheet"); #if this pref is not blank or starting with http, https or / [root], then #add an additional / to the front - if($intra && $intra!~/^(\/|https?)/) { + if($intra && $intra !~ /^(\/|https?)/) { $dbh->do("UPDATE systempreferences SET value=? WHERE variable=?", undef,('/'.$intra,"intranetstylesheet")); print "WARNING: Your system preference intranetstylesheet has been prefixed with a slash to make it an absolute path.\n"; @@ -6973,8 +6971,6 @@ if(CheckVersion($DBversion)) { SetVersion ($DBversion); } - - =head1 FUNCTIONS =head2 TableExists($table) diff --git a/kohaversion.pl b/kohaversion.pl index ac431af627..abb9897d44 100644 --- a/kohaversion.pl +++ b/kohaversion.pl @@ -16,7 +16,7 @@ the kohaversion is divided in 4 parts : use strict; sub kohaversion { - our $VERSION = '3.13.00.004'; + our $VERSION = '3.13.00.005'; # version needs to be set this way # so that it can be picked up by Makefile.PL # during install -- 2.20.1