* Removed the error_reporting statement (usefull for debugging but not so nice for a release)
* Fixed some coding inconcistencies
This commit is contained in:
@@ -2,13 +2,14 @@
|
|||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
|
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* phpMyAdmin Configuration File
|
* phpMyAdmin Configuration File
|
||||||
* All directives are explained in Documentation.html
|
*
|
||||||
|
* All directives are explained in Documentation.html
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* Bookmark Table Structure
|
* Bookmark Table Structure
|
||||||
*
|
*
|
||||||
* CREATE TABLE bookmark (
|
* CREATE TABLE bookmark (
|
||||||
@@ -80,13 +81,14 @@ unset($cfgServers[0]);
|
|||||||
$cfgConfirm = TRUE;
|
$cfgConfirm = TRUE;
|
||||||
$cfgPersistentConnections = FALSE;
|
$cfgPersistentConnections = FALSE;
|
||||||
$cfgShowBlob = FALSE;
|
$cfgShowBlob = FALSE;
|
||||||
$cfgProtectBlob = FALSE;
|
$cfgProtectBlob = FALSE;
|
||||||
$cfgShowSQL = TRUE;
|
$cfgShowSQL = TRUE;
|
||||||
$cfgSkipLockedTables = FALSE; // mark used tables, make possible to show
|
$cfgSkipLockedTables = FALSE; // mark used tables, make possible to show
|
||||||
// locked tables (since MySQL 3.23.30)
|
// locked tables (since MySQL 3.23.30)
|
||||||
$cfgMaxRows = 30;
|
$cfgMaxRows = 30;
|
||||||
$cfgOrder = 'ASC';
|
$cfgOrder = 'ASC';
|
||||||
$cfgOBGzip = true; // GZIP output buffering
|
$cfgOBGzip = TRUE; // GZIP output buffering
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Link to the offcial MySQL documentation
|
* Link to the offcial MySQL documentation
|
||||||
@@ -119,6 +121,7 @@ $cfgModifyDeleteAtLeft = TRUE;
|
|||||||
$cfgModifyDeleteAtRight = FALSE;
|
$cfgModifyDeleteAtRight = FALSE;
|
||||||
$cfgLeftWidth = 150; // left frame width
|
$cfgLeftWidth = 150; // left frame width
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* MySQL settings
|
* MySQL settings
|
||||||
*/
|
*/
|
||||||
@@ -193,5 +196,4 @@ $cfgFunctions = array(
|
|||||||
* Unset magic_quotes_runtime - do not change!
|
* Unset magic_quotes_runtime - do not change!
|
||||||
*/
|
*/
|
||||||
set_magic_quotes_runtime(0);
|
set_magic_quotes_runtime(0);
|
||||||
error_reporting(63);
|
|
||||||
?>
|
?>
|
||||||
|
Reference in New Issue
Block a user