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 04824162d9
commit 44287d680b

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'] : '';