From fa9dbfcd30dfbe7b9a45230be4a83237d60ef920 Mon Sep 17 00:00:00 2001 From: Rouslan Placella Date: Sat, 19 May 2012 18:17:30 +0100 Subject: [PATCH] Fixed wrong path when loading CSS files --- libraries/Theme.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/Theme.class.php b/libraries/Theme.class.php index 3f2df364f6..ccb1a46010 100644 --- a/libraries/Theme.class.php +++ b/libraries/Theme.class.php @@ -331,7 +331,7 @@ class PMA_Theme foreach ($this->_cssFiles as $file) { $path = $this->getPath() . "/css/$file.css.php"; - $fallback = PMA_Theme_Manager::FALLBACK_THEME . "/css/$file.css.php"; + $fallback = "./themes/" . PMA_Theme_Manager::FALLBACK_THEME . "/css/$file.css.php"; if (is_readable($path)) { echo "\n/* FILE: $file.css.php */\n";