Index: trunk/extensions/DonationInterface/payflowpro_gateway/forms/TwoColumn.php |
— | — | @@ -202,10 +202,10 @@ |
203 | 203 | // amount |
204 | 204 | $form .= '<tr>'; |
205 | 205 | $form .= '<td class="label">' . Xml::label(wfMsg( 'payflowpro_gateway-donor-amount' ), 'amount') . '</td>'; |
206 | | - $form .= '<td>' . Xml::radio( 'amount', 250 ) . '$250 ' . |
207 | | - Xml::radio( 'amount', 100 ) . '$100 ' . |
208 | | - Xml::radio( 'amount', 75 ) . '$75 ' . |
209 | | - Xml::radio( 'amount', 35 ) . '$35 ' . |
| 206 | + $form .= '<td>' . Xml::radio( 'amount', 250 ) . '250 ' . |
| 207 | + Xml::radio( 'amount', 100 ) . '100 ' . |
| 208 | + Xml::radio( 'amount', 75 ) . '75 ' . |
| 209 | + Xml::radio( 'amount', 35 ) . '35 ' . |
210 | 210 | Xml::radio( 'amount', -1, null, array( 'id' => 'otherRadio' ) ) . Xml::input( 'amountOther', '7', $this->form_data['amount'], array( 'type' => 'text', 'onfocus' => 'clearField( this, "0.00" )', 'onblur' => 'document.getElementById("otherRadio").value = this.value', 'maxlength' => '10', 'id' => 'amount' ) ) . |
211 | 211 | '<span class="creditcard-error-msg">' . ' ' . $this->form_errors['invalidamount'] . '</span></td>'; |
212 | 212 | $form .= '</tr>'; |
Index: trunk/extensions/DonationInterface/payflowpro_gateway/forms/TwoColumnLetter.php |
— | — | @@ -111,10 +111,10 @@ |
112 | 112 | // amount |
113 | 113 | $form .= '<tr>'; |
114 | 114 | $form .= '<td class="label">' . Xml::label(wfMsg( 'payflowpro_gateway-donor-amount' ), 'amount') . '</td>'; |
115 | | - $form .= '<td>' . Xml::radio( 'amount', 250 ) . '$250 ' . |
116 | | - Xml::radio( 'amount', 100 ) . '$100 ' . |
117 | | - Xml::radio( 'amount', 75 ) . '$75 ' . |
118 | | - Xml::radio( 'amount', 35 ) . '$35 ' . |
| 115 | + $form .= '<td>' . Xml::radio( 'amount', 250 ) . '250 ' . |
| 116 | + Xml::radio( 'amount', 100 ) . '100 ' . |
| 117 | + Xml::radio( 'amount', 75 ) . '75 ' . |
| 118 | + Xml::radio( 'amount', 35 ) . '35 ' . |
119 | 119 | Xml::radio( 'amount', -1, null, array( 'id' => 'otherRadio' ) ) . Xml::input( 'amountOther', '7', $this->form_data['amount'], array( 'type' => 'text', 'onfocus' => 'clearField( this, "0.00" )', 'onblur' => 'document.getElementById("otherRadio").value = this.value', 'maxlength' => '10', 'id' => 'amount' ) ) . |
120 | 120 | '<span class="creditcard-error-msg">' . ' ' . $this->form_errors['invalidamount'] . '</span></td>'; |
121 | 121 | $form .= '</tr>'; |