mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ConfirmEdit
synced 2024-11-23 15:56:50 +00:00
Merge "Fix unescaped i18n message use in captcha label"
This commit is contained in:
commit
1e66e2afdc
|
@ -89,8 +89,8 @@ class HTMLFancyCaptchaField extends HTMLFormField {
|
|||
public function getLabel() {
|
||||
// slight abuse of what getLabel() should mean; $mLabel is used for the pre-label text
|
||||
// as the actual label is always the same
|
||||
return $this->mParent->msg( 'captcha-label' )->text() . ' '
|
||||
. $this->mParent->msg( 'fancycaptcha-captcha' )->text();
|
||||
return $this->mParent->msg( 'captcha-label' )->escaped() . ' '
|
||||
. $this->mParent->msg( 'fancycaptcha-captcha' )->escaped();
|
||||
}
|
||||
|
||||
/** @inheritDoc */
|
||||
|
|
Loading…
Reference in a new issue