mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ConfirmEdit
synced 2024-11-23 15:56:50 +00:00
Fix unescaped i18n message use in captcha label
Bug: T373732 Change-Id: Ib9079feead4bfe0f1fd2c832c6cabb6eb7149534
This commit is contained in:
parent
c1675ff6c3
commit
42d4f55cf6
|
@ -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