Merge pull request #17472 from RealRancor/add_is_dir
Add is_dir check to getAllApps() function
This commit is contained in:
commit
19f34bafa5
|
@ -779,7 +779,7 @@ class OC_App {
|
||||||
if (is_resource($dh)) {
|
if (is_resource($dh)) {
|
||||||
while (($file = readdir($dh)) !== false) {
|
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;
|
$apps[] = $file;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue