From f008d1d27c981739150cd5f7390707853d251f66 Mon Sep 17 00:00:00 2001 From: Dave Greenberg Date: Mon, 15 Dec 2014 14:48:29 -0800 Subject: [PATCH] CRM-15361 - default location_type label should be Automatic. ---------------------------------------- * CRM-15361: https://issues.civicrm.org/jira/browse/CRM-15361 --- CRM/Mailing/Form/Group.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Mailing/Form/Group.php b/CRM/Mailing/Form/Group.php index de4749df23..71f86c2e06 100644 --- a/CRM/Mailing/Form/Group.php +++ b/CRM/Mailing/Form/Group.php @@ -216,7 +216,7 @@ class CRM_Mailing_Form_Group extends CRM_Contact_Form_Task { // location types $locationTypes = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Address', 'location_type_id', array('id' => 'display_name')); - $this->addElement('select', 'location_type_id', ts("Location Type"), array('' => '-select-') + $locationTypes); + $this->addElement('select', 'location_type_id', ts("Location Type"), array('' => ts('Automatic')) + $locationTypes); $methods = CRM_Core_SelectValues::emailSelectMethods(); $this->addElement('select', 'email_selection_method', ts("Email Selection Method"), $methods); -- 2.25.1