From 15c84ddfdb044364a13fae0a47fa111fe738c548 Mon Sep 17 00:00:00 2001 From: Yuchen Wang Date: Thu, 17 Nov 2011 23:25:46 -0500 Subject: [PATCH] CC-2950: Tell users if they are running an out-of-date version or not - changed default url to "http://airtime.sourcefabric.org" --- airtime_mvc/application/models/Preference.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtime_mvc/application/models/Preference.php b/airtime_mvc/application/models/Preference.php index 82b29e387..2307b458a 100644 --- a/airtime_mvc/application/models/Preference.php +++ b/airtime_mvc/application/models/Preference.php @@ -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; }