Fixed wrong path when loading CSS files

This commit is contained in:
Rouslan Placella 2012-05-19 18:17:30 +01:00
parent 291e2480d2
commit fa9dbfcd30

View File

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