config.inc.php3:
- Added comments about what many of the configuration variables do - Replaced multiple spaces with tabs for alignment
This commit is contained in:
@@ -5,6 +5,11 @@ phpMyAdmin - Changelog
|
||||
$Id$
|
||||
$Source$
|
||||
|
||||
2001-08-17 Robin Johnson <robbat2@orbis-terrarum.net>
|
||||
* config.inc.php3
|
||||
- Added comments about what many of the configuration variables do
|
||||
- Replaced multiple spaces with tabs for alignment
|
||||
|
||||
2001-08-17 Lo<4C>c Chapeaux <lolo@phpheaven.net>
|
||||
* lang/polish.inc.php3: updated thanks to
|
||||
Jakub Wilk <ubanus@users.sourceforge.net>.
|
||||
|
@@ -78,15 +78,15 @@ unset($cfgServers[0]);
|
||||
/**
|
||||
* Other core phpMyAdmin settings
|
||||
*/
|
||||
$cfgConfirm = TRUE;
|
||||
$cfgPersistentConnections = FALSE;
|
||||
$cfgShowBlob = FALSE;
|
||||
$cfgProtectBlob = FALSE;
|
||||
$cfgShowSQL = TRUE;
|
||||
$cfgConfirm = TRUE; // confirm 'DROP TABLE' & 'DROP DATABASE'
|
||||
$cfgPersistentConnections = FALSE; // use persistent connections to MySQL database
|
||||
$cfgShowBlob = FALSE; // display blob field contents in browse mode
|
||||
$cfgProtectBlob = FALSE; // disallow editing of blob fields in edit mode
|
||||
$cfgShowSQL = TRUE; // show SQL queries as run
|
||||
$cfgSkipLockedTables = FALSE; // mark used tables, make possible to show
|
||||
// locked tables (since MySQL 3.23.30)
|
||||
$cfgMaxRows = 30;
|
||||
$cfgOrder = 'ASC';
|
||||
$cfgMaxRows = 30; // maximum number of rows to display in browse mode
|
||||
$cfgOrder = 'ASC'; // default for 'ORDER BY' clause
|
||||
$cfgOBGzip = TRUE; // GZIP output buffering
|
||||
$cfgGZipDump = TRUE; // Allow the use of gzip/bzip compression
|
||||
$cfgBZipDump = TRUE; // for dump files
|
||||
@@ -113,15 +113,15 @@ require('./select_lang.inc.php3');
|
||||
/**
|
||||
* Customization & design
|
||||
*/
|
||||
$cfgBorder = 0;
|
||||
$cfgThBgcolor = '#D3DCE3';
|
||||
$cfgBgcolorOne = '#CCCCCC';
|
||||
$cfgBgcolorTwo = '#DDDDDD';
|
||||
$cfgTextareaCols = 40;
|
||||
$cfgTextareaRows = 7;
|
||||
$cfgBorder = 0; // border width on tables
|
||||
$cfgThBgcolor = '#D3DCE3'; // table header row colour
|
||||
$cfgBgcolorOne = '#CCCCCC'; // table data row colour
|
||||
$cfgBgcolorTwo = '#DDDDDD'; // table data row colour, alternate
|
||||
$cfgTextareaCols = 40; // textarea size (columns) in edit mode
|
||||
$cfgTextareaRows = 7; // textarea size (rows) in edit mode
|
||||
$cfgLimitChars = 50; // max field data length in browse mode
|
||||
$cfgModifyDeleteAtLeft = TRUE;
|
||||
$cfgModifyDeleteAtRight = FALSE;
|
||||
$cfgModifyDeleteAtLeft = TRUE; // show edit/delete links on left side of browse
|
||||
$cfgModifyDeleteAtRight = FALSE; // show edit/delete links on right side of browse
|
||||
$cfgLeftWidth = 150; // left frame width
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user