Skip to content

Commit

Permalink
Added spaces before and after "=" to make the export look more consis…
Browse files Browse the repository at this point in the history
…tent
  • Loading branch information
michael-mader committed May 2, 2012
1 parent 5db659b commit 44dea51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/export/sql.php
Expand Up @@ -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;
}

Expand Down

0 comments on commit 44dea51

Please sign in to comment.