Merge "Fix unescaped i18n message use in captcha label" into REL1_39

This commit is contained in:
jenkins-bot 2024-12-13 13:59:09 +00:00 committed by Gerrit Code Review
commit 78d4e1b3ce

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();
} }
/** /**