Added "./" to $cfg['ThemePath']

This commit is contained in:
Alexander M. Turek
2004-09-23 10:10:37 +00:00
parent 32d7197fa9
commit 3b0cda0834
3 changed files with 7 additions and 2 deletions

View File

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

View File

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

View File

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