config_import.lib should merge default settings
This commit is contained in:
@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
|
||||
$Id$
|
||||
$Source$
|
||||
|
||||
2004-06-09 Alexander M. Turek <me@derrabus.de>
|
||||
* libraries/config_import.lib.php: The default settings should be merged.
|
||||
|
||||
2004-06-14 Marc Delisle <lem9@users.sourceforge.net>
|
||||
Changes, thanks to Michael Keck (mkkeck):
|
||||
* images/b_tblops.png, themes/darkblue_orange/img/b_tblops.png: new icon
|
||||
|
@@ -827,16 +827,16 @@ if (!isset($cfg['ReplaceHelpImg'])) {
|
||||
$cfg['ReplaceHelpImg'] = TRUE;
|
||||
}
|
||||
|
||||
if (!isset($cfg['ThemePath'])){
|
||||
$cfg['ThemePath']='';
|
||||
$cfg['ThemeDefault']='';
|
||||
$cfg['ThemeManager'] = FALSE;
|
||||
if (!isset($cfg['ThemePath'])) {
|
||||
$cfg['ThemePath'] = 'themes';
|
||||
$cfg['ThemeDefault'] = 'original';
|
||||
$cfg['ThemeManager'] = TRUE;
|
||||
} else {
|
||||
if (!isset($cfg['ThemeDefault'])){
|
||||
$cfg['ThemeDefault']='original';
|
||||
$cfg['ThemeDefault'] = 'original';
|
||||
}
|
||||
if (!isset($cfg['ThemeManager'])){
|
||||
$cfg['ThemeManager'] = FALSE;
|
||||
$cfg['ThemeManager'] = TRUE;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user