bug 614669
This commit is contained in:
@@ -5,10 +5,14 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2002-09-26 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
|
* config.inc.php3, libraries/config_import.lib.php3: let UploadDir
|
||||||
|
empty because this means to not use the feature, thanks to Lo<4C>c
|
||||||
|
|
||||||
2002-09-25 Marc Delisle <lem9@users.sourceforge.net>
|
2002-09-25 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* read_dump.php3: bug 611970, do not display the imported query
|
* read_dump.php3: bug 611970, do not display the imported query
|
||||||
if larger than 500 (I don't think it's necessary to add another
|
if larger than 500 (I don't think it's necessary to add another
|
||||||
config variable), thanks to Lo<EFBFBD>c
|
config variable), thanks to Lo<4C>c
|
||||||
|
|
||||||
2002-09-24 Marc Delisle <lem9@users.sourceforge.net>
|
2002-09-24 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* sql.php3: could not go to next page when browsing a query containing
|
* sql.php3: could not go to next page when browsing a query containing
|
||||||
|
@@ -365,7 +365,7 @@ $cfg['SQLQuery']['Validate'] = FALSE; // Validate a query (see $cfg['SQLVa
|
|||||||
/**
|
/**
|
||||||
* web-server upload directory
|
* web-server upload directory
|
||||||
*/
|
*/
|
||||||
$cfg['UploadDir'] = './upload/'; // end with a slash
|
$cfg['UploadDir'] = ''; // for example, './upload/'; you must end it with a slash, and you leave it empty for no upload directory
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* SQL Parser Settings
|
* SQL Parser Settings
|
||||||
@@ -488,7 +488,6 @@ if ($cfg['ShowFunctionFields']) {
|
|||||||
*/
|
*/
|
||||||
set_magic_quotes_runtime(0);
|
set_magic_quotes_runtime(0);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* File Revision - do not change either!
|
* File Revision - do not change either!
|
||||||
*/
|
*/
|
||||||
|
@@ -617,9 +617,10 @@ if (!defined('PMA_CONFIG_IMPORT_LIB_INCLUDED')){
|
|||||||
$cfg['SQLQuery']['Validate'] = FALSE;
|
$cfg['SQLQuery']['Validate'] = FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isset($cfg['UploadDir'])) {
|
// do not set a value here, an empty value means to not use the feature
|
||||||
$cfg['UploadDir'] = './upload/';
|
// if (!isset($cfg['UploadDir'])) {
|
||||||
}
|
// $cfg['UploadDir'] = './upload/';
|
||||||
|
// }
|
||||||
|
|
||||||
if (!isset($cfg['SQLValidator']['use'])) {
|
if (!isset($cfg['SQLValidator']['use'])) {
|
||||||
$cfg['SQLValidator']['use'] = FALSE;
|
$cfg['SQLValidator']['use'] = FALSE;
|
||||||
|
Reference in New Issue
Block a user