From d5bf0d8f8e271e48eec60bf0201d32994e8da54e Mon Sep 17 00:00:00 2001 From: Christophe Croullebois Date: Tue, 7 Sep 2010 16:13:10 +0200 Subject: [PATCH] (MT #3447) Reservations Added notice for hold from staff and hold from borrower. --- installer/data/mysql/updatedatabase30.pl | 12 ++++++++++++ kohaversion.pl | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/installer/data/mysql/updatedatabase30.pl b/installer/data/mysql/updatedatabase30.pl index c94535a0e3..ba40c6db0e 100644 --- a/installer/data/mysql/updatedatabase30.pl +++ b/installer/data/mysql/updatedatabase30.pl @@ -774,6 +774,18 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) { SetVersion ($DBversion); } +$DBversion = '3.00.06.013'; +if (C4::Context->preference('Version') < TransformToNum($DBversion)){ + $dbh->do(" + INSERT IGNORE INTO `letter` (module, code, name, title, content) VALUES('reserves', 'HOLDPLACED', 'Hold Placed on Item', 'Hold Placed on Item','An hold has been placed on the following item : <> (<<biblionumber>>) by the user <<firstname>> <<surname>> (<<cardnumber>>).'); + "); + + $dbh->do(" + INSERT IGNORE INTO `letter` (module, code, name, title, content) VALUES('reserves', 'STAFFHOLDPLACED', 'Hold Placed on Item (from staff)', 'Hold Placed on Item (from staff)','A hold has been placed on the following item from the intranet : <<title>> (<<biblionumber>>) for the user <<firstname>> <<surname>> (<<cardnumber>>).'); + "); + print "Upgrade to $DBversion done (Added notice for hold from staff and hold from borrower)\n"; + SetVersion ($DBversion); +} =item DropAllForeignKeys($table) Drop all foreign keys of the table $table diff --git a/kohaversion.pl b/kohaversion.pl index 1f3148a1ef..fb6c2072b9 100644 --- a/kohaversion.pl +++ b/kohaversion.pl @@ -10,7 +10,7 @@ use strict; sub kohaversion { - our $VERSION = '3.00.06.010'; + our $VERSION = '3.00.06.013'; # version needs to be set this way # so that it can be picked up by Makefile.PL # during install -- 2.39.5