From 13cad04bd3e6d4676c543928cd14fc5bb3681a2f Mon Sep 17 00:00:00 2001 From: Sebastian Mendel Date: Thu, 1 Dec 2005 08:59:12 +0000 Subject: [PATCH] missing '/' in img path (bug #1370437) - fix for the fix --- libraries/Theme.class.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libraries/Theme.class.php b/libraries/Theme.class.php index f0301c04c..7ab049348 100644 --- a/libraries/Theme.class.php +++ b/libraries/Theme.class.php @@ -85,7 +85,9 @@ class PMA_Theme { $theme->setPath( $folder ); - $theme->loadInfo(); + if ( ! $theme->loadInfo() ) { + return false; + } $theme->checkImgPath();