Index: branches/ContactPageFundraiser/SpecialContact.php |
— | — | @@ -57,10 +57,12 @@ |
58 | 58 | $form['citytown'] = $wgRequest->getVal('city-town'); |
59 | 59 | $form['provstat'] = $wgRequest->getVal('prov-state'); |
60 | 60 | $form['story'] = $wgRequest->getVal('story'); |
| 61 | + $form['followup'] = $wgRequest->getVal('follow-up'); |
61 | 62 | |
62 | 63 | $text = ''; |
63 | 64 | foreach( $form as $key => $value) { |
64 | | - $text .= "$key\t\t\t:\t\t\t$value\n"; |
| 65 | + $text .= pack('A10A2A10', $key, ":", $value); |
| 66 | + $text .= "\n"; |
65 | 67 | } |
66 | 68 | $f->setText( $text ); |
67 | 69 | $f->doSubmit(); |