diff options
Diffstat (limited to 'lib/private/app.php')
-rw-r--r-- | lib/private/app.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/app.php b/lib/private/app.php index 0292abb6310..3c7b17c148b 100644 --- a/lib/private/app.php +++ b/lib/private/app.php @@ -521,7 +521,7 @@ class OC_App { */ public static function isAppDirWritable($appid) { $path = self::getAppPath($appid); - return is_writable($path); + return ($path !== false) ? is_writable($path) : false; } /** @@ -544,7 +544,7 @@ class OC_App { */ public static function getAppVersion($appid) { $file = self::getAppPath($appid); - return self::getAppVersionByPath($file); + return ($file !== false) ? self::getAppVersionByPath($file) : '0'; } /** |