From e88d2b38894091a304eb07174569836483a9d218 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Tue, 11 May 2010 07:45:28 -0400 Subject: [PATCH] DB rev 134: DisplayMultiPlaceHold syspref Signed-off-by: Galen Charlton --- installer/data/mysql/updatedatabase.pl | 2 +- kohaversion.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 42b66870af..89b8c0f045 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -3596,7 +3596,7 @@ if (C4::Context->preference('Version') < TransformToNum($DBversion)){ SetVersion ($DBversion); } -$DBversion = '3.01.00.XXX'; +$DBversion = '3.01.00.134'; if (C4::Context->preference('Version') < TransformToNum($DBversion)){ $dbh->do("INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES ('DisplayMultiPlaceHold','1','Display the ability to place multiple holds or not','','YesNo')"); print "Upgrade to $DBversion done adding syspref DisplayMultiPlaceHold to control whether multiple holds can be placed from the search results page"; diff --git a/kohaversion.pl b/kohaversion.pl index ff38ba303d..473e66950b 100644 --- a/kohaversion.pl +++ b/kohaversion.pl @@ -10,7 +10,7 @@ use strict; sub kohaversion { - our $VERSION = '3.01.00.133'; + our $VERSION = '3.01.00.134'; # version needs to be set this way # so that it can be picked up by Makefile.PL # during install -- 2.11.4.GIT