Check for file exists before loading app version file

remotes/origin/stable5
Bart Visscher 13 years ago
parent 04824162d9
commit 44287d680b
  1. 5
      lib/app.php

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

Loading…
Cancel
Save