From 85c5eab98d83954ad6dac24be8a488f18682247d Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Mon, 15 Jul 2013 08:41:51 -0400 Subject: [PATCH] Bug 7639 - system preference to forgive fines on lost items - QA Followup - Fix update description --- installer/data/mysql/updatedatabase.pl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 0555b2f..5578267 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -7048,7 +7048,7 @@ $DBversion = "3.13.00.XXX"; if (C4::Context->preference("Version") < TransformToNum($DBversion)) { $dbh->do("INSERT INTO systempreferences (variable,value,options,explanation,type) VALUES('WhenLostForgiveFine','0',NULL,'If ON, Forgives the fines on an item when it is lost.','YesNo')"); $dbh->do("INSERT INTO systempreferences (variable,value,options,explanation,type) VALUES('WhenLostChargeReplacementFee','1',NULL,'If ON, Charge the replacement price when a patron loses an item.','YesNo')"); - print "Upgrade to $DBversion done (Added sysprefs WhenLostForgiveFine and WhenLostChargeReplacementFee)\n"; + print "Upgrade to $DBversion done (Bug 7639 - system preference to forgive fines on lost items)\n"; SetVersion ($DBversion); } -- 1.7.2.5