Skip to content

Instantly share code, notes, and snippets.

@greggles
Created March 5, 2015 00:35
Show Gist options
  • Save greggles/f08919f3b45cd68d44cb to your computer and use it in GitHub Desktop.
Save greggles/f08919f3b45cd68d44cb to your computer and use it in GitHub Desktop.
diff --git a/sites/all/modules/custom/card_member/card_member.form.inc b/sites/all/modules/custom/card_member/card_member.form.inc
index 6b6fe25..f62abf5 100644
--- a/sites/all/modules/custom/card_member/card_member.form.inc
+++ b/sites/all/modules/custom/card_member/card_member.form.inc
@@ -13,11 +13,11 @@ function card_member_notifications($form, &$form_state, $account, $category = 'a
array(':uid' => $account->uid))->fetchField();
$default_values = isset($result) ? unserialize($result) : '';
$mail_choices = array(
- 'Activation Outreach',
- 'Training Outreach',
- 'Load Status',
- 'Balance Outreach',
- 'Weekly Statements',
+ 'Activation Outreach' => 'Special Offers',
+ 'Training Outreach' => 'Helpful Tips',
+ 'Load Status' => 'Funds Loaded',
+ 'Balance Outreach' => 'Balance Updates',
+ 'Weekly Statements' => 'Weekly Statements',
);
$form['ok_to_mail_types'] = array(
'#type' => 'checkboxes',
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment