Fix unescaped i18n message use in captcha label

Bug: T373732
Change-Id: Ib9079feead4bfe0f1fd2c832c6cabb6eb7149534
(cherry picked from commit 42d4f55cf6)
This commit is contained in:
Gergő Tisza 2024-11-12 21:49:00 +01:00 committed by Reedy
parent 23e06da3b0
commit c794c13a01

View file

@ -86,8 +86,8 @@ class HTMLFancyCaptchaField extends HTMLFormField {
public function getLabel() { public function getLabel() {
// slight abuse of what getLabel() should mean; $mLabel is used for the pre-label text // slight abuse of what getLabel() should mean; $mLabel is used for the pre-label text
// as the actual label is always the same // as the actual label is always the same
return $this->mParent->msg( 'captcha-label' )->text() . ' ' return $this->mParent->msg( 'captcha-label' )->escaped() . ' '
. $this->mParent->msg( 'fancycaptcha-captcha' )->text(); . $this->mParent->msg( 'fancycaptcha-captcha' )->escaped();
} }
/** /**