Skip to content

Commit

Permalink
Merge pull request #10602 from agileware/CIVICRM-167
Browse files Browse the repository at this point in the history
CRM-20811 CIVICRM-167 Schedule Reminders uses mixed terminology for Active state
  • Loading branch information
eileenmcnaughton authored Mar 19, 2018
2 parents 8c00bf7 + b30461e commit f0fa15e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions CRM/Admin/Form/ScheduleReminders.php
Original file line number Diff line number Diff line change
Expand Up @@ -168,11 +168,10 @@ public function buildQuickForm() {
$this->add('number', 'start_action_offset', ts('When'), array('class' => 'six', 'min' => 0));
$this->addRule('start_action_offset', ts('Value should be a positive number'), 'positiveInteger');

$isActive = ts('Send email');
$isActive = ts('Scheduled Reminder Active');
$recordActivity = ts('Record activity for automated email');
if ($providersCount) {
$this->assign('sms', $providersCount);
$isActive = ts('Send email or SMS');
$recordActivity = ts('Record activity for automated email or SMS');
$options = CRM_Core_OptionGroup::values('msg_mode');
$this->add('select', 'mode', ts('Send as'), $options);
Expand Down

0 comments on commit f0fa15e

Please sign in to comment.