Index: trunk/extensions/ConfirmEdit/Captcha.php |
— | — | @@ -253,7 +253,9 @@ |
254 | 254 | $captcha = $this->getCaptcha(); |
255 | 255 | $index = $this->storeCaptcha( $captcha ); |
256 | 256 | |
257 | | - return "<p><label for=\"wpCaptchaWord\">{$captcha['question']}</label> = " . |
| 257 | + // dir="ltr" is needed because otherwise it may say |
| 258 | + // "5 - 20" instead of "20 - 5" and that would be wrong. |
| 259 | + return "<p><label dir="ltr" for=\"wpCaptchaWord\">{$captcha['question']}</label> = " . |
258 | 260 | Xml::element( 'input', array( |
259 | 261 | 'name' => 'wpCaptchaWord', |
260 | 262 | 'id' => 'wpCaptchaWord', |