Merge pull request #1230 from davecivicrm/CRM-13107
[civicrm-core.git] / api / v3 / CustomField.php
index aa1fd3aca49a9641d33757e3db0890391f2208cc..10d7fedead2057cb0a21a19f5cdba5a6d87e06dd 100644 (file)
@@ -88,12 +88,14 @@ function civicrm_api3_custom_field_create($params) {
 function _civicrm_api3_custom_field_create_spec(&$params) {
   $params['label']['api.required'] = 1;
   $params['custom_group_id']['api.required'] = 1;
+  $params['is_active']['api.default'] = 1;
   $params['option_type'] = array(
     'title' => 'This (boolean) field tells the BAO to create an option group for the field if the field type is appropriate',
     'api.default' => 1,
-    'type' => CRM_Utils_Type::T_BOOL,
+    'type' => CRM_Utils_Type::T_BOOLEAN,
   );
   $params['data_type']['api.default'] = 'String';
+  $params['is_active']['api.default'] = 1;
 }
 
 /**