From 44dea51b36c4cca18adc91068dcdec95ce5f0026 Mon Sep 17 00:00:00 2001 From: Fender123 Date: Wed, 2 May 2012 10:15:15 +0300 Subject: [PATCH] Added spaces before and after "=" to make the export look more consistent --- libraries/export/sql.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/export/sql.php b/libraries/export/sql.php index cda2585ce404..640429fd0197 100644 --- a/libraries/export/sql.php +++ b/libraries/export/sql.php @@ -512,11 +512,11 @@ function PMA_exportHeader() if ((!isset($GLOBALS['sql_compatibility']) || $GLOBALS['sql_compatibility'] == 'NONE') && !PMA_DRIZZLE ) { - $head .= 'SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";' . $crlf; + $head .= 'SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";' . $crlf; } if (isset($GLOBALS['sql_use_transaction'])) { - $head .= 'SET AUTOCOMMIT=0;' . $crlf + $head .= 'SET AUTOCOMMIT = 0;' . $crlf . 'START TRANSACTION;' . $crlf; }