CC-2950: Tell users if they are running an out-of-date version or not

- changed default url to "http://airtime.sourcefabric.org"
This commit is contained in:
Yuchen Wang 2011-11-17 23:25:46 -05:00
parent 52052bd573
commit 15c84ddfdb
1 changed files with 1 additions and 1 deletions

View File

@ -530,7 +530,7 @@ class Application_Model_Preference
public static function GetLatestLink(){
$link = self::GetValue("latest_link");
if($link == null || strlen($link) == 0) {
return "http://www.sourcefabric.org/en/airtime/download/";
return 'http://airtime.sourcefabric.org';
} else {
return $link;
}