From 9c4f0abfc842ca5708122693a71cbb35f4083e0d Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Mon, 7 Oct 2019 18:59:57 +0000 Subject: [PATCH] Bug 23697: (QA follow-up) Fix quotes in database update statement --- installer/data/mysql/atomicupdate/bug_23697.perl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/data/mysql/atomicupdate/bug_23697.perl b/installer/data/mysql/atomicupdate/bug_23697.perl index f53decbe55..394bb880ce 100644 --- a/installer/data/mysql/atomicupdate/bug_23697.perl +++ b/installer/data/mysql/atomicupdate/bug_23697.perl @@ -1,6 +1,6 @@ $DBversion = 'XXX'; # will be replaced by the RM if( CheckVersion( $DBversion ) ) { - $dbh->do( "UPDATE systempreferences SET variable="PatronAutoComplete" WHERE variable="CircAutocompl" LIMIT 1" ); + $dbh->do( "UPDATE systempreferences SET variable='PatronAutoComplete' WHERE variable='CircAutocompl' LIMIT 1" ); SetVersion( $DBversion ); print "Upgrade to $DBversion done (Bug 23697 - Rename CircAutocompl system preference to PatronAutoComplete)\n"; } -- 2.11.0