diff --git a/ChangeLog b/ChangeLog index 601960457..ea07c4e8c 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ phpMyAdmin - Changelog $Id$ $Source$ +2003-06-06 Marc Delisle + * Documentation.html, config.inc.php3: new LimitChars behavior + 2003-06-06 Michal Cihar * mult_submits.inc.php3: Missing ;. * libraries/relation_cleanup.lib.php3, mult_submits.inc.php3, sql.php3: diff --git a/Documentation.html b/Documentation.html index 74336c9df..785b683e7 100755 --- a/Documentation.html +++ b/Documentation.html @@ -1481,7 +1481,7 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
$cfg['LimitChars'] integer
- Maximal number of Chars showed in a TEXT OR a BLOB + Maximal number of Chars showed in any non-numeric field on browse view. Can be turned off by a toggle button on the browse page.

diff --git a/config.inc.php3 b/config.inc.php3 index 6a9316e09..64031c753 100755 --- a/config.inc.php3 +++ b/config.inc.php3 @@ -400,7 +400,7 @@ $cfg['TextareaAutoSelect'] = TRUE; // autoselect when clicking in the t $cfg['CharTextareaCols'] = 40; // textarea size (columns) for CHAR/VARCHAR $cfg['CharTextareaRows'] = 2; // textarea size (rows) for CHAR/VARCHAR $cfg['CtrlArrowsMoving'] = TRUE; // Enable Ctrl+Arrows moving between fields when editing? -$cfg['LimitChars'] = 50; // For text and blobs, max field data length in browse mode +$cfg['LimitChars'] = 50; // Max field data length in browse mode for all non-numeric fields $cfg['ModifyDeleteAtLeft'] = TRUE; // show edit/delete links on left side of browse // (or at the top with vertical browse) $cfg['ModifyDeleteAtRight'] = FALSE; // show edit/delete links on right side of browse