* Removed the error_reporting statement (usefull for debugging but not so nice for a release)

* Fixed some coding inconcistencies
This commit is contained in:
Loïc Chapeaux
2001-08-03 13:57:18 +00:00
parent 83c2a7fbbb
commit f3c31f7c58

View File

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