From 561c3a15f0d3821ffbaef84052c77182914b2d12 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 17 Jun 2011 14:17:08 +0200 Subject: [PATCH] prevent some possible warnings if there are files in /apps --- lib/app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/app.php b/lib/app.php index a56e0c2f9e6..e373331850d 100644 --- a/lib/app.php +++ b/lib/app.php @@ -59,7 +59,7 @@ class OC_APP{ // The rest comes here $dir = opendir( "$SERVERROOT/apps" ); while( false !== ( $filename = readdir( $dir ))){ - if( substr( $filename, 0, 1 ) != '.' ){ + if( substr( $filename, 0, 1 ) != '.' and is_dir("$SERVERROOT/apps/$filename") ){ if( file_exists( "$SERVERROOT/apps/$filename/appinfo/app.php" )){ if(OC_APPCONFIG::getValue($filename,'installed_version',0)==0){ //check if the plugin is fully installed //install the database -- 2.39.5