зеркало из https://github.com/nextcloud/server.git
Merge pull request #17472 from RealRancor/add_is_dir
Add is_dir check to getAllApps() function
This commit is contained in:
Коммит
19f34bafa5
|
@ -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;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче