diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/comanche.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/comanche.php b/include/comanche.php index 1537226ca..ca3ad336b 100644 --- a/include/comanche.php +++ b/include/comanche.php @@ -287,8 +287,7 @@ function comanche_widget($name, $text) { if(! function_exists($func)) { if(file_exists('widget/' . trim($name) . '.php')) require_once('widget/' . trim($name) . '.php'); - elseif(folder_exists('widget/'. trim($name)) - && (file_exists('widget/' . trim($name) . '/' . trim($name) . '.php'))) + elseif(file_exists('widget/' . trim($name) . '/' . trim($name) . '.php')) require_once('widget/' . trim($name) . '/' . trim($name) . '.php'); } else { |