LimitChars

This commit is contained in:
Marc Delisle
2003-06-06 14:35:59 +00:00
parent f9b4b35c2e
commit e4421dd380
3 changed files with 5 additions and 2 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2003-06-06 Marc Delisle <lem9@users.sourceforge.net>
* Documentation.html, config.inc.php3: new LimitChars behavior
2003-06-06 Michal Cihar <nijel@users.sourceforge.net> 2003-06-06 Michal Cihar <nijel@users.sourceforge.net>
* mult_submits.inc.php3: Missing ;. * mult_submits.inc.php3: Missing ;.
* libraries/relation_cleanup.lib.php3, mult_submits.inc.php3, sql.php3: * libraries/relation_cleanup.lib.php3, mult_submits.inc.php3, sql.php3:

View File

@@ -1481,7 +1481,7 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
<dt><b>$cfg['LimitChars'] </b>integer</dt> <dt><b>$cfg['LimitChars'] </b>integer</dt>
<dd> <dd>
Maximal number of Chars showed in a <tt>TEXT</tt> OR a <tt>BLOB</tt> Maximal number of Chars showed in any non-numeric
field on browse view. Can be turned off by a toggle button on the field on browse view. Can be turned off by a toggle button on the
browse page. browse page.
<br /><br /> <br /><br />

View File

@@ -400,7 +400,7 @@ $cfg['TextareaAutoSelect'] = TRUE; // autoselect when clicking in the t
$cfg['CharTextareaCols'] = 40; // textarea size (columns) for CHAR/VARCHAR $cfg['CharTextareaCols'] = 40; // textarea size (columns) for CHAR/VARCHAR
$cfg['CharTextareaRows'] = 2; // textarea size (rows) for CHAR/VARCHAR $cfg['CharTextareaRows'] = 2; // textarea size (rows) for CHAR/VARCHAR
$cfg['CtrlArrowsMoving'] = TRUE; // Enable Ctrl+Arrows moving between fields when editing? $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 $cfg['ModifyDeleteAtLeft'] = TRUE; // show edit/delete links on left side of browse
// (or at the top with vertical browse) // (or at the top with vertical browse)
$cfg['ModifyDeleteAtRight'] = FALSE; // show edit/delete links on right side of browse $cfg['ModifyDeleteAtRight'] = FALSE; // show edit/delete links on right side of browse