missing elements for Refresh link feature
This commit is contained in:
@@ -8,6 +8,8 @@ $Source$
|
|||||||
2004-06-22 Marc Delisle <lem9@users.sourceforge.net>
|
2004-06-22 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* config.inc.php, themes/.../colors.inc.php: remove color-related
|
* config.inc.php, themes/.../colors.inc.php: remove color-related
|
||||||
parameters from config.inc.php, and non-color-related from colors.inc.php
|
parameters from config.inc.php, and non-color-related from colors.inc.php
|
||||||
|
* config.inc.php, libraries/common.lib.php, libraries/config_import.lib.php:
|
||||||
|
missing parameter for the Refresh link feature
|
||||||
|
|
||||||
2004-06-22 Michal Čihař <michal@cihar.com>
|
2004-06-22 Michal Čihař <michal@cihar.com>
|
||||||
* libraries/relation.lib.php: Fix possible error on non existant pma db.
|
* libraries/relation.lib.php: Fix possible error on non existant pma db.
|
||||||
|
@@ -552,6 +552,7 @@ $cfg['SQLQuery']['Edit'] = TRUE; // Edit link to change a query
|
|||||||
$cfg['SQLQuery']['Explain'] = TRUE; // EXPLAIN on SELECT queries
|
$cfg['SQLQuery']['Explain'] = TRUE; // EXPLAIN on SELECT queries
|
||||||
$cfg['SQLQuery']['ShowAsPHP'] = TRUE; // Wrap a query in PHP
|
$cfg['SQLQuery']['ShowAsPHP'] = TRUE; // Wrap a query in PHP
|
||||||
$cfg['SQLQuery']['Validate'] = FALSE; // Validate a query (see $cfg['SQLValidator'] as well)
|
$cfg['SQLQuery']['Validate'] = FALSE; // Validate a query (see $cfg['SQLValidator'] as well)
|
||||||
|
$cfg['SQLQuery']['Refresh'] = TRUE; // Refresh the results page
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -136,7 +136,7 @@ if (isset($cfg['FileRevision'])) {
|
|||||||
} else {
|
} else {
|
||||||
$cfg['FileRevision'] = array(1, 1);
|
$cfg['FileRevision'] = array(1, 1);
|
||||||
}
|
}
|
||||||
if ($cfg['FileRevision'][0] < 2 || ($cfg['FileRevision'][0] == 2 && $cfg['FileRevision'][1] < 28)) {
|
if ($cfg['FileRevision'][0] < 2 || ($cfg['FileRevision'][0] == 2 && $cfg['FileRevision'][1] < 31)) {
|
||||||
require_once('./libraries/config_import.lib.php');
|
require_once('./libraries/config_import.lib.php');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -876,6 +876,10 @@ if (!isset($cfg['SQLQuery']['Validate'])) {
|
|||||||
$cfg['SQLQuery']['Validate'] = FALSE;
|
$cfg['SQLQuery']['Validate'] = FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!isset($cfg['SQLQuery']['Refresh'])) {
|
||||||
|
$cfg['SQLQuery']['Refresh'] = TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
if (!isset($cfg['UploadDir'])) {
|
if (!isset($cfg['UploadDir'])) {
|
||||||
$cfg['UploadDir'] = '';
|
$cfg['UploadDir'] = '';
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user