CC-3863: Stats should not send version number with extra characters

-fixed
This commit is contained in:
Martin Konecny 2012-05-23 17:25:16 -04:00
parent b28a700005
commit eb4207dd1d
1 changed files with 2 additions and 2 deletions

View File

@ -414,8 +414,8 @@ class Application_Model_Preference
$key == 'PLAYOUT_ENGINE_CPU_PERC' ) {
if($key == 'AIRTIME_VERSION'){
// remove hash tag on the version string
list($version, $dump) = explode('+', $info[1]);
$systemInfoArray[$key] = $version;
$version = explode('+', $info[1]);
$systemInfoArray[$key] = $version[0];
}else{
$systemInfoArray[$key] = $info[1];
}