From 3c797c044ae9f946db319f8f9533b038f3a36546 Mon Sep 17 00:00:00 2001 From: drigato Date: Fri, 19 Sep 2014 15:41:55 -0400 Subject: [PATCH] Undoing make API on by default for now. This needs to be done in the db --- 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 814b5e388..e73069f43 100644 --- a/airtime_mvc/application/models/Preference.php +++ b/airtime_mvc/application/models/Preference.php @@ -443,7 +443,7 @@ class Application_Model_Preference public static function GetAllow3rdPartyApi() { $val = self::getValue("third_party_api"); - return (strlen($val) == 0 ) ? "1" : $val; + return (strlen($val) == 0 ) ? "0" : $val; } public static function SetPhone($phone)