mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
an-app-is-identified-by-having-a-info.xml-app.php-should-not-be-mandatory
This commit is contained in:
parent
9d910deef0
commit
a2ec080427
1 changed files with 1 additions and 1 deletions
|
|
@ -502,7 +502,7 @@ class OC_Installer{
|
|||
if($dir = opendir( $app_dir['path'] )) {
|
||||
while( false !== ( $filename = readdir( $dir ))) {
|
||||
if( substr( $filename, 0, 1 ) != '.' and is_dir($app_dir['path']."/$filename") ) {
|
||||
if( file_exists( $app_dir['path']."/$filename/appinfo/app.php" )) {
|
||||
if( file_exists( $app_dir['path']."/$filename/appinfo/info.xml" )) {
|
||||
if(!OC_Installer::isInstalled($filename)) {
|
||||
$info=OC_App::getAppInfo($filename);
|
||||
$enabled = isset($info['default_enable']);
|
||||
|
|
|
|||
Loading…
Reference in a new issue