From b75dae1893c554c9dbb049ec449093e00658910e Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Wed, 26 Dec 2007 13:04:28 -0600 Subject: [PATCH] Fix for typo in Insert line in updatedatabase.pl Signed-off-by: Joshua Ferraro --- installer/data/mysql/updatedatabase.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 361bac2c2c..fc61b4f31c 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -777,7 +777,7 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) { $DBversion = "3.00.00.036"; if (C4::Context->preference("Version") < TransformToNum($DBversion)) { - $dbh->do("INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('OPACItemsResultsDisplay',"statuses",'statuses : show only the status of items in result list. itemdisplay : show full location of items (branch+location+callnumber) as in staff interface','statuses|itemdetails','Choice');"); + $dbh->do("INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('OPACItemsResultsDisplay','statuses','statuses : show only the status of items in result list. itemdisplay : show full location of items (branch+location+callnumber) as in staff interface','statuses|itemdetails','Choice');"); print "Upgrade to $DBversion done (OPACItemsResultsDisplay systempreference added)\n"; SetVersion ($DBversion); } -- 2.39.5