Index: trunk/extensions/ContributionTracking/ContributionTracking_body.php |
— | — | @@ -151,8 +151,10 @@ |
152 | 152 | $output .= $this->msgWiki( 'contrib-tracking-redirect' ); |
153 | 153 | |
154 | 154 | // Offer a button to post the form if the user has no Javascript support |
155 | | - //$output .= $this->msgWiki( 'contrib-tracking-continue' ); |
156 | | - //$output .= '<input type="submit" value="' . $this->msg( 'contrib-tracking-button' ) . '" />'; |
| 155 | + $output .= '<noscript>'; |
| 156 | + $output .= $this->msgWiki( 'contrib-tracking-continue' ); |
| 157 | + $output .= '<input type="submit" value="' . $this->msg( 'contrib-tracking-button' ) . '" />'; |
| 158 | + $output .= '</noscript>'; |
157 | 159 | |
158 | 160 | $output .= '</form>'; |
159 | 161 | |