Index: trunk/extensions/ContributionTracking/ContributionTracking_body.php |
— | — | @@ -148,9 +148,11 @@ |
149 | 149 | $output .= '<input type="hidden" name="' . htmlspecialchars($key) . '" value="' . htmlspecialchars($value) . '" />'; |
150 | 150 | } |
151 | 151 | |
| 152 | + $output .= $this->msgWiki( 'contrib-tracking-redirect' ); |
| 153 | + |
152 | 154 | // Offer a button to post the form if the user has no Javascript support |
153 | | - $output .= $this->msgWiki( 'contrib-tracking-continue' ); |
154 | | - $output .= '<input type="submit" value="' . $this->msg( 'contrib-tracking-button' ) . '" />'; |
| 155 | + //$output .= $this->msgWiki( 'contrib-tracking-continue' ); |
| 156 | + //$output .= '<input type="submit" value="' . $this->msg( 'contrib-tracking-button' ) . '" />'; |
155 | 157 | |
156 | 158 | $output .= '</form>'; |
157 | 159 | |
Index: trunk/extensions/ContributionTracking/ContributionTracking.i18n.php |
— | — | @@ -20,6 +20,7 @@ |
21 | 21 | |
22 | 22 | 'contrib-tracking-submitting' => 'Submitting to payment processor...', |
23 | 23 | 'contrib-tracking-continue' => 'If you are not automatically redirected, click the button to complete your donation at PayPal.', |
| 24 | + 'contrib-tracking-redirect' => 'You will be automatically redirected to complete your donation at PayPal.', |
24 | 25 | |
25 | 26 | 'contrib-tracking-button' => 'Continue', |
26 | 27 | |