From 1300204586b38ea0de37e71784950b2557a3efbc Mon Sep 17 00:00:00 2001 From: RealRancor Date: Wed, 8 Jul 2015 10:25:39 +0200 Subject: [PATCH] Add is_dir check to getAllApps() function --- lib/private/app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/app.php b/lib/private/app.php index 1e49fdc6010..83b2e8cd760 100644 --- a/lib/private/app.php +++ b/lib/private/app.php @@ -779,7 +779,7 @@ class OC_App { if (is_resource($dh)) { while (($file = readdir($dh)) !== false) { - if ($file[0] != '.' and is_file($apps_dir['path'] . '/' . $file . '/appinfo/info.xml')) { + if ($file[0] != '.' and is_dir($apps_dir['path'] . '/' . $file) and is_file($apps_dir['path'] . '/' . $file . '/appinfo/info.xml')) { $apps[] = $file;