config_import.lib should merge default settings

This commit is contained in:
Alexander M. Turek
2004-06-14 23:14:21 +00:00
parent 33ac9f3150
commit 7a30c07bec
2 changed files with 9 additions and 6 deletions

View File

@@ -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

View File

@@ -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;
}
}