diff --git a/ChangeLog b/ChangeLog index 974af07a1..36c67a015 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,11 @@ phpMyAdmin - Changelog $Id$ $Source$ +2004-09-22 Alexander M. Turek + * config.inc.php, libraries/config_import.lib.php: Added "./" to the + default value of $cfg['ThemePath']. Thanks to Donny Simonton for + pointing this out. + 2004-09-22 Marc Delisle * tbl_query_box.php, read_dump.php: bug #1032066: when no db was selected from the left panel, the query window's Import Files had diff --git a/config.inc.php b/config.inc.php index 702a39cac..f561a80ae 100644 --- a/config.inc.php +++ b/config.inc.php @@ -536,7 +536,7 @@ $cfg['MainPageIconic'] = TRUE; // show icons in list on main page, on r $cfg['ReplaceHelpImg'] = TRUE; // show help button instead of strDocumentation (true|false)? // theme manager -$cfg['ThemePath'] = 'themes'; // using themes manager please set up here the path to 'themes' +$cfg['ThemePath'] = './themes'; // using themes manager please set up here the path to 'themes' // else leave empty $cfg['ThemeManager'] = TRUE; // if you want to use selectable themes and if ThemesPath not empty // set it to true, else set it to false (default is false); diff --git a/libraries/config_import.lib.php b/libraries/config_import.lib.php index 2f0966d1e..9d0410777 100644 --- a/libraries/config_import.lib.php +++ b/libraries/config_import.lib.php @@ -741,7 +741,7 @@ if (!isset($cfg['ReplaceHelpImg'])) { } if (!isset($cfg['ThemePath'])) { - $cfg['ThemePath'] = 'themes'; + $cfg['ThemePath'] = './themes'; $cfg['ThemeDefault'] = 'original'; $cfg['ThemeManager'] = TRUE; } else {