Check for file exists before loading app version file

This commit is contained in:
Bart Visscher 2012-10-17 14:06:25 +02:00
parent 699a484f42
commit 051dde08db
1 changed files with 2 additions and 3 deletions

View File

@ -390,9 +390,8 @@ class OC_App{
*/ */
public static function getAppVersion($appid) { public static function getAppVersion($appid) {
$file= self::getAppPath($appid).'/appinfo/version'; $file= self::getAppPath($appid).'/appinfo/version';
$version=@file_get_contents($file); if(is_file($file) && $version = trim(file_get_contents($file))) {
if($version) { return $version;
return trim($version);
}else{ }else{
$appData=self::getAppInfo($appid); $appData=self::getAppInfo($appid);
return isset($appData['version'])? $appData['version'] : ''; return isset($appData['version'])? $appData['version'] : '';