Trim trailing whitespace from version.

This commit is contained in:
Thomas Tanghus 2012-06-24 01:57:08 +02:00
parent 9e6d2f2f82
commit b182e6c86a
1 changed files with 1 additions and 1 deletions

View File

@ -381,7 +381,7 @@ class OC_App{
$file= self::getAppPath($appid).'/appinfo/version'; $file= self::getAppPath($appid).'/appinfo/version';
$version=@file_get_contents($file); $version=@file_get_contents($file);
if($version){ if($version){
return $version; return trim($version);
}else{ }else{
$appData=self::getAppInfo($appid); $appData=self::getAppInfo($appid);
return $appData['version']; return $appData['version'];