From 28399b70ccad39c5c1215043e4d965359dab1e56 Mon Sep 17 00:00:00 2001 From: drigato Date: Fri, 19 Sep 2014 14:57:43 -0400 Subject: [PATCH] Make API on by default --- airtime_mvc/application/forms/GeneralPreferences.php | 1 + 1 file changed, 1 insertion(+) diff --git a/airtime_mvc/application/forms/GeneralPreferences.php b/airtime_mvc/application/forms/GeneralPreferences.php index 34b60e704..1402814e8 100644 --- a/airtime_mvc/application/forms/GeneralPreferences.php +++ b/airtime_mvc/application/forms/GeneralPreferences.php @@ -91,6 +91,7 @@ class Application_Form_GeneralPreferences extends Zend_Form_SubForm _("Enabled"))); $third_party_api->setValue(Application_Model_Preference::GetAllow3rdPartyApi()); $third_party_api->setDecorators(array('ViewHelper')); + $third_party_api->setValue(true); $this->addElement($third_party_api); $locale = new Zend_Form_Element_Select("locale");