Index: trunk/extensions/DonationInterface/payflowpro_gateway/forms/TwoStepTwoColumnLetter3.php |
— | — | @@ -161,7 +161,9 @@ |
162 | 162 | $form .= '<td class="amount_data" style="text-align:right;width:75px;">'.$this->form_data['amount'] . |
163 | 163 | Html::hidden( 'amount', $this->form_data['amount'] ) . |
164 | 164 | '</td>'; |
165 | | - $form .= '<td class="amount_data" style="text-align:right;width:75px;">'.$this->form_data[ 'currency' ].'</td>'; |
| 165 | + $form .= '<td class="amount_data" style="text-align:right;width:75px;">'.$this->form_data[ 'currency' ] . |
| 166 | + Html::hidden( 'currency_code', $this->form_data['currency'] ) . |
| 167 | + '</td>'; |
166 | 168 | $form .= '</tr>'; |
167 | 169 | $form .= '</table>'; |
168 | 170 | $form .= '</td>'; |
— | — | @@ -238,6 +240,7 @@ |
239 | 241 | $form .= '<td>' . Xml::input( 'city', '18', $this->form_data['city'], array( 'type' => 'text', 'onfocus' => 'clearField( this, \''.wfMsg( 'payflowpro_gateway-donor-city' ).'\' )', 'maxlength' => '40', 'id' => 'city' ) ) . ' ' . |
240 | 242 | $this->generateStateDropdown() . ' ' . |
241 | 243 | Xml::input( 'zip', '5', $this->form_data['zip'], array( 'type' => 'text', 'onfocus' => 'clearField( this, \''.wfMsg( 'payflowpro_gateway-zip-code' ).'\' )', 'maxlength' => '10', 'id' => 'zip' ) ) . |
| 244 | + Html::hidden( 'country', 'US' ) . |
242 | 245 | '</td>'; |
243 | 246 | $form .= '</tr>'; |
244 | 247 | |