summaryrefslogtreecommitdiffstats
path: root/lib/app.php
diff options
context:
space:
mode:
authorkondou <kondou@ts.unde.re>2013-08-20 17:20:30 +0200
committerkondou <kondou@ts.unde.re>2013-08-20 17:20:30 +0200
commitf1518a54dffb4a309da3952e154b71d4bc9482f8 (patch)
treeb6faeec269eb8904c5c8f42732e5466758fdeb0e /lib/app.php
parent65d802329f8307cd010a306073d2d3ffd7dc7b74 (diff)
parentde949b1caa4491a8016ed5e609fc781526fea54d (diff)
downloadnextcloud-server-f1518a54dffb4a309da3952e154b71d4bc9482f8.tar.gz
nextcloud-server-f1518a54dffb4a309da3952e154b71d4bc9482f8.zip
Merge branch 'master' into clean_up_util
Conflicts: lib/util.php
Diffstat (limited to 'lib/app.php')
-rw-r--r--lib/app.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/app.php b/lib/app.php
index 2f5a952d9f8..1b5979107db 100644
--- a/lib/app.php
+++ b/lib/app.php
@@ -666,7 +666,7 @@ class OC_App{
}
$dh = opendir( $apps_dir['path'] );
- while( $file = readdir( $dh ) ) {
+ while (($file = readdir($dh)) !== false) {
if ($file[0] != '.' and is_file($apps_dir['path'].'/'.$file.'/appinfo/app.php')) {