diff options
author | Frank Karlitschek <karlitschek@kde.org> | 2012-04-29 21:27:02 +0200 |
---|---|---|
committer | Frank Karlitschek <karlitschek@kde.org> | 2012-04-29 21:27:02 +0200 |
commit | c7e7767f583288ecb7fdf7fc271b697a7aaf1a77 (patch) | |
tree | 535c27376ae29453cfb7cf1ae0d7af467620edfa | |
parent | b862c49ae6f606dd232e67d75f3e749e0c4e4ead (diff) | |
download | nextcloud-server-c7e7767f583288ecb7fdf7fc271b697a7aaf1a77.tar.gz nextcloud-server-c7e7767f583288ecb7fdf7fc271b697a7aaf1a77.zip |
don´t hardcode files app. we have no a standard info.xml in files
-rwxr-xr-x | lib/app.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/app.php b/lib/app.php index 29653775253..ed7bd6ff3f9 100755 --- a/lib/app.php +++ b/lib/app.php @@ -55,7 +55,7 @@ class OC_App{ } // Our very own core apps are hardcoded - foreach( array('files', 'settings') as $app ){ + foreach( array( 'settings') as $app ){ if(is_null($types)){ require( $app.'/appinfo/app.php' ); } |