diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-04-01 19:20:59 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-04-01 19:22:23 +0200 |
commit | cce59df2ae399bc43f1c11a3162b4855de70a1bc (patch) | |
tree | 79cc3f2acdd3b1e4bd272512d08eebe9925d7c54 | |
parent | 39e8981bc2ef098a020476a9d94a4b0cc4d9e1c9 (diff) | |
download | nextcloud-server-cce59df2ae399bc43f1c11a3162b4855de70a1bc.tar.gz nextcloud-server-cce59df2ae399bc43f1c11a3162b4855de70a1bc.zip |
the core apps don't have types
-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 625ef889670..7d5e8fa91c6 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 ){ - if(is_null($types) or self::isType($app,$types)){ + if(is_null($types)){ require( $app.'/appinfo/app.php' ); } } |