Index: civicrm/trunk/sites/all/modules/queue2civicrm/queue2civicrm.module |
— | — | @@ -104,6 +104,10 @@ |
105 | 105 | 30 => 30, |
106 | 106 | 40 => 40, |
107 | 107 | 50 => 50, |
| 108 | + 75 => 75, |
| 109 | + 100 => 100, |
| 110 | + 120 => 120, |
| 111 | + 150 => 150, |
108 | 112 | ), |
109 | 113 | ); |
110 | 114 | |
— | — | @@ -245,7 +249,7 @@ |
246 | 250 | 'first_name' => $msg['first_name'], |
247 | 251 | 'middle_name' => $msg['middle_name'], |
248 | 252 | 'last_name' => $msg['last_name'], |
249 | | - 'do_not_trade' => (strlen($msg['anonymous']) ? 1 : 0), |
| 253 | + 'do_not_trade' => ($msg['anonymous'] ? 1 : 0 ), |
250 | 254 | 'contact_source' => 'online donation' |
251 | 255 | ); |
252 | 256 | // Honor the opt-out checkbox, if present |