From b14c46c9428c74c9519223870d6442b8427ac699 Mon Sep 17 00:00:00 2001 From: Brendan A Gallagher Date: Tue, 5 Apr 2016 16:21:03 +0000 Subject: [PATCH] DBRev fix - "" was wrong smartquotes. fixed Signed-off-by: Brendan A Gallagher --- 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 a0a9d10765..36aee35fc4 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -12199,7 +12199,7 @@ $DBversion = "3.23.00.046"; if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { $dbh->do(q{ - ALTER TABLE vendor_edi_accounts ADD COLUMN plugin VARCHAR(256) NOT NULL DEFAULT “”; + ALTER TABLE vendor_edi_accounts ADD COLUMN plugin VARCHAR(256) NOT NULL DEFAULT ""; }); print "Upgrade to $DBversion done (Bug 15630 - Make Edifact module pluggable))\n"; -- 2.11.4.GIT