From 57c7b18798d8cf5813f26bf2a764ef308f36c173 Mon Sep 17 00:00:00 2001
From: Kyle M Hall <kyle@bywatersolutions.com>
Date: Fri, 7 Mar 2014 11:36:56 -0500
Subject: [PATCH] Bug 8000 [QA Followup] - Change mis-used qw to q

---
 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 e836780..d3a9d07 100755
--- a/installer/data/mysql/updatedatabase.pl
+++ b/installer/data/mysql/updatedatabase.pl
@@ -9974,7 +9974,7 @@ if ( CheckVersion($DBversion) ) {
 $DBversion = "3.19.00.XXX";
 if ( CheckVersion($DBversion) ) {
     $dbh->do("INSERT INTO systempreferences (variable,value,options,explanation,type) VALUES ('SendAllEmailsTo','',NULL,'This email will replace the To address in every message sent by the system.  This is meant to help testing and validation only.','Textarea')");
-    $dbh->do( qw{ ALTER TABLE message_queue ADD sentto_address mediumtext AFTER to_address } );
+    $dbh->do( q{ ALTER TABLE message_queue ADD sentto_address mediumtext AFTER to_address } );
     print "Upgrade to $DBversion done (Bug 8000 - add method to override the destination of every email sent by the system.)\n";
     SetVersion ($DBversion);
 }
-- 
1.9.1