new option DisplayBinaryAsHex (was used but no default had been defined)

This commit is contained in:
Marc Delisle
2010-01-19 12:49:06 +00:00
parent a3d022b7ca
commit a04da7df12
2 changed files with 11 additions and 0 deletions

View File

@@ -1516,6 +1516,10 @@ CREATE DATABASE,ALTER DATABASE,DROP DATABASE</pre>
(<tt>SMART</tt>) order - I.E. descending order for fields of type TIME, (<tt>SMART</tt>) order - I.E. descending order for fields of type TIME,
DATE, DATETIME and TIMESTAMP, ascending order else- by default.</dd> DATE, DATETIME and TIMESTAMP, ascending order else- by default.</dd>
<dt id="cfg_DisplayBinaryAsHex">$cfg['DisplayBinaryAsHex'] boolean </dt>
<dd>Defines whether the &quot;Show binary contents as HEX&quot; browse
option is ticked by default.</dd>
<dt id="cfg_ProtectBinary">$cfg['ProtectBinary'] boolean or string</dt> <dt id="cfg_ProtectBinary">$cfg['ProtectBinary'] boolean or string</dt>
<dd>Defines whether <tt>BLOB</tt> or <tt>BINARY</tt> fields are protected <dd>Defines whether <tt>BLOB</tt> or <tt>BINARY</tt> fields are protected
from editing when browsing a table's content. Valid values are: from editing when browsing a table's content. Valid values are:

View File

@@ -880,6 +880,13 @@ $cfg['MaxRows'] = 30;
*/ */
$cfg['Order'] = 'ASC'; $cfg['Order'] = 'ASC';
/**
* default for 'Show binary contents as HEX'
*
* @global string $cfg['DisplayBinaryAsHex']
*/
$cfg['DisplayBinaryAsHex'] = true;
/******************************************************************************* /*******************************************************************************
* In edit mode... * In edit mode...