Added "./" to $cfg['ThemePath']
This commit is contained in:
@@ -5,6 +5,11 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2004-09-22 Alexander M. Turek <me@derrabus.de>
|
||||||
|
* 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 <lem9@users.sourceforge.net>
|
2004-09-22 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* tbl_query_box.php, read_dump.php: bug #1032066: when no db was
|
* 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
|
selected from the left panel, the query window's Import Files had
|
||||||
|
@@ -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)?
|
$cfg['ReplaceHelpImg'] = TRUE; // show help button instead of strDocumentation (true|false)?
|
||||||
|
|
||||||
// theme manager
|
// 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
|
// else leave empty
|
||||||
$cfg['ThemeManager'] = TRUE; // if you want to use selectable themes and if ThemesPath not 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);
|
// set it to true, else set it to false (default is false);
|
||||||
|
@@ -741,7 +741,7 @@ if (!isset($cfg['ReplaceHelpImg'])) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!isset($cfg['ThemePath'])) {
|
if (!isset($cfg['ThemePath'])) {
|
||||||
$cfg['ThemePath'] = 'themes';
|
$cfg['ThemePath'] = './themes';
|
||||||
$cfg['ThemeDefault'] = 'original';
|
$cfg['ThemeDefault'] = 'original';
|
||||||
$cfg['ThemeManager'] = TRUE;
|
$cfg['ThemeManager'] = TRUE;
|
||||||
} else {
|
} else {
|
||||||
|
Reference in New Issue
Block a user