Backwards compatibility
This commit is contained in:
@@ -128,7 +128,7 @@ h1 {font-family: sans-serif; font-size: large; font-weight: bold}
|
|||||||
* Includes compatibility code for older config.inc.php3 revisions
|
* Includes compatibility code for older config.inc.php3 revisions
|
||||||
* if necessary
|
* if necessary
|
||||||
*/
|
*/
|
||||||
if (!isset($cfg['FileRevision']) || (int) substr($cfg['FileRevision'], 13, 3) < 137) {
|
if (!isset($cfg['FileRevision']) || (int) substr($cfg['FileRevision'], 13, 3) < 138) {
|
||||||
include('./libraries/config_import.lib.php3');
|
include('./libraries/config_import.lib.php3');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -387,7 +387,7 @@ if (!defined('PMA_CONFIG_IMPORT_LIB_INCLUDED')){
|
|||||||
$cfg['MySQLManualType'] = 'searchable';
|
$cfg['MySQLManualType'] = 'searchable';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isset($cfg['MySQLManualType'])) {
|
if (!isset($cfg['MySQLManualType'])) {
|
||||||
$cfg['MySQLManualType'] = 'none';
|
$cfg['MySQLManualType'] = 'none';
|
||||||
}
|
}
|
||||||
@@ -536,6 +536,10 @@ if (!defined('PMA_CONFIG_IMPORT_LIB_INCLUDED')){
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!isset($cfg['TextareaAutoSelect'])) {
|
||||||
|
$cfg['TextareaAutoSelect'] = TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
if (!isset($cfg['LimitChars'])) {
|
if (!isset($cfg['LimitChars'])) {
|
||||||
if (isset($cfgLimitChars)) {
|
if (isset($cfgLimitChars)) {
|
||||||
$cfg['LimitChars'] = $cfgLimitChars;
|
$cfg['LimitChars'] = $cfgLimitChars;
|
||||||
|
Reference in New Issue
Block a user