Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <michal@cihar.com>2004-09-23 18:36:54 +0400
committerMichal Čihař <michal@cihar.com>2004-09-23 18:36:54 +0400
commitb425d0ebabbc33cab0a904361c2181b046de8e74 (patch)
tree696a7572d9271b8ee9ea39d8a2d74c5e490c859a /themes.php
parentc427b7233136776ba7ed8237c15787ece54b0caf (diff)
Do not prepend $cfg['ThemePath'] with another './'.
Diffstat (limited to 'themes.php')
-rw-r--r--themes.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/themes.php b/themes.php
index 937708dbf8..c7ef143ea5 100644
--- a/themes.php
+++ b/themes.php
@@ -4,7 +4,7 @@ require_once('./libraries/grab_globals.lib.php');
require_once('./libraries/common.lib.php');
/* Theme Select */
-$path_to_themes = './' . $cfg['ThemePath'] . '/';
+$path_to_themes = $cfg['ThemePath'] . '/';
require_once('./libraries/select_theme.lib.php');
/* set language and charset */