Fixed conf.php

This commit is contained in:
Duncan Sommerville 2015-03-25 17:35:43 -04:00
parent 040eb1443d
commit 669d980565
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ class Config {
public static function setAirtimeVersion() {
$airtime_version = Application_Model_Preference::GetAirtimeVersion();
$uniqueid = Application_Model_Preference::GetUniqueId();
$buildVersion = "2.5.2"; // @file_get_contents(self::$rootDir."/../VERSION");
$buildVersion = @file_get_contents(self::$rootDir."/../VERSION");
self::$CC_CONFIG['airtime_version'] = md5($airtime_version.$buildVersion);
}