Index: trunk/extensions/DonationInterface/payflowpro_gateway/forms/TwoStepTwoColumnLetter3.php |
— | — | @@ -151,16 +151,6 @@ |
152 | 152 | Xml::input( 'lname', '30', $this->form_data['lname'], array( 'type' => 'text', 'onfocus' => 'clearField( this, \''.wfMsg( 'payflowpro_gateway-last' ).'\' )', 'maxlength' => '25', 'id' => 'lname' ) ) . '</td>'; |
153 | 153 | $form .= "</tr>"; |
154 | 154 | |
155 | | - // email |
156 | | - $form .= '<tr>'; |
157 | | - $form .= '<td colspan=2><span class="creditcard-error-msg">' . $this->form_errors['emailAdd'] . '</span></td>'; |
158 | | - $form .= '</tr>'; |
159 | | - $form .= '<tr>'; |
160 | | - $form .= '<td class="label">' . Xml::label( wfMsg( 'payflowpro_gateway-email-receipt' ), 'emailAdd' ) . '</td>'; |
161 | | - $form .= '<td>' . Xml::input( 'emailAdd', '30', $this->form_data['email'], array( 'type' => 'text', 'onfocus' => 'clearField( this, \''.wfMsg( 'payflowpro_gateway-donor-email' ).'\' )', 'maxlength' => '64', 'id' => 'emailAdd', 'class' => 'fullwidth' ) ) . |
162 | | - '</td>'; |
163 | | - $form .= '</tr>'; |
164 | | - |
165 | 155 | // street |
166 | 156 | $form .= $this->getStreetField(); |
167 | 157 | |
— | — | @@ -175,6 +165,16 @@ |
176 | 166 | |
177 | 167 | // country |
178 | 168 | $form .= $this->getCountryField(); |
| 169 | + |
| 170 | + // email |
| 171 | + $form .= '<tr>'; |
| 172 | + $form .= '<td colspan=2><span class="creditcard-error-msg">' . $this->form_errors['emailAdd'] . '</span></td>'; |
| 173 | + $form .= '</tr>'; |
| 174 | + $form .= '<tr>'; |
| 175 | + $form .= '<td class="label">' . Xml::label( wfMsg( 'payflowpro_gateway-email-receipt' ), 'emailAdd' ) . '</td>'; |
| 176 | + $form .= '<td>' . Xml::input( 'emailAdd', '30', $this->form_data['email'], array( 'type' => 'text', 'onfocus' => 'clearField( this, \''.wfMsg( 'payflowpro_gateway-donor-email' ).'\' )', 'maxlength' => '64', 'id' => 'emailAdd', 'class' => 'fullwidth' ) ) . |
| 177 | + '</td>'; |
| 178 | + $form .= '</tr>'; |
179 | 179 | |
180 | 180 | return $form; |
181 | 181 | } |