cfgProtectBlob default value

This commit is contained in:
Marc Delisle
2001-08-20 12:36:14 +00:00
parent e7e913232a
commit 7b5e0de828
2 changed files with 5 additions and 1 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2001-08-20 Marc Delisle <lem9@users.sourceforge.net>
* config.inc.php3: $cfgProtectBlob is now TRUE by default, to help
against the blob data corruption of some browsers
2001-08-20 Lo<4C>c Chapeaux <lolo@phpheaven.net> 2001-08-20 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* db_details.php3; tbl_properties.php3; tbl_dump.php3; lib.inc.php3; * db_details.php3; tbl_properties.php3; tbl_dump.php3; lib.inc.php3;
lang/*: lang/*:

View File

@@ -82,7 +82,7 @@ unset($cfgServers[0]);
$cfgConfirm = TRUE; // confirm 'DROP TABLE' & 'DROP DATABASE' $cfgConfirm = TRUE; // confirm 'DROP TABLE' & 'DROP DATABASE'
$cfgPersistentConnections = FALSE; // use persistent connections to MySQL database $cfgPersistentConnections = FALSE; // use persistent connections to MySQL database
$cfgShowBlob = FALSE; // display blob field contents in browse mode $cfgShowBlob = FALSE; // display blob field contents in browse mode
$cfgProtectBlob = FALSE; // disallow editing of blob fields in edit mode $cfgProtectBlob = TRUE; // disallow editing of blob fields in edit mode
$cfgShowSQL = TRUE; // show SQL queries as run $cfgShowSQL = TRUE; // show SQL queries as run
$cfgSkipLockedTables = FALSE; // mark used tables, make possible to show $cfgSkipLockedTables = FALSE; // mark used tables, make possible to show
// locked tables (since MySQL 3.23.30) // locked tables (since MySQL 3.23.30)