Index: trunk/extensions/DonationInterface/payflowpro_gateway/forms/TwoColumnLetter7.php |
— | — | @@ -317,7 +317,7 @@ |
318 | 318 | $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' ) ) . ' ' . |
319 | 319 | $this->generateStateDropdown() . ' ' . |
320 | 320 | Xml::input( 'zip', '5', $this->form_data['zip'], array( 'type' => 'text', 'onfocus' => 'clearField( this, \''.wfMsg( 'payflowpro_gateway-zip-code' ).'\' )', 'maxlength' => '10', 'id' => 'zip' ) ) . |
321 | | - Html::hidden( 'country', 840 ) . |
| 321 | + Html::hidden( 'country', 'US' ) . |
322 | 322 | '</td>'; |
323 | 323 | $form .= '</tr>'; |
324 | 324 | |
Index: trunk/extensions/DonationInterface/payflowpro_gateway/forms/TwoStepTwoColumnLetter3.php |
— | — | @@ -297,7 +297,7 @@ |
298 | 298 | $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' ) ) . ' ' . |
299 | 299 | $this->generateStateDropdown() . ' ' . |
300 | 300 | Xml::input( 'zip', '5', $this->form_data['zip'], array( 'type' => 'text', 'onfocus' => 'clearField( this, \''.wfMsg( 'payflowpro_gateway-zip-code' ).'\' )', 'maxlength' => '10', 'id' => 'zip' ) ) . |
301 | | - Html::hidden( 'country', 840 ) . |
| 301 | + Html::hidden( 'country', 'US' ) . |
302 | 302 | '</td>'; |
303 | 303 | $form .= '</tr>'; |
304 | 304 | |
Index: trunk/extensions/DonationInterface/payflowpro_gateway/forms/TwoStepTwoColumnPremiumUS.php |
— | — | @@ -275,7 +275,7 @@ |
276 | 276 | $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' ) ) . ' ' . |
277 | 277 | $this->generateStateDropdown() . ' ' . |
278 | 278 | Xml::input( 'zip', '5', $this->form_data['zip'], array( 'type' => 'text', 'onfocus' => 'clearField( this, \''.wfMsg( 'payflowpro_gateway-zip-code' ).'\' )', 'maxlength' => '10', 'id' => 'zip' ) ) . |
279 | | - Html::hidden( 'country', 840 ) . |
| 279 | + Html::hidden( 'country', 'US' ) . |
280 | 280 | '</td>'; |
281 | 281 | $form .= '</tr>'; |
282 | 282 | |