Add space between checkbox and label in page title replacements

Change-Id: I4fb8651cf8771f9459c3537bb8e3b174e828fb29
This commit is contained in:
Yaron Koren 2022-09-28 14:51:53 +00:00
parent cb570d5609
commit e852e449f4

View file

@ -797,7 +797,7 @@ class SpecialReplaceText extends SpecialPage {
); );
foreach ( $titles_for_move as $title ) { foreach ( $titles_for_move as $title ) {
$out->addHTML( $out->addHTML(
Xml::check( 'move-' . $title->getArticleID(), true ) . Xml::check( 'move-' . $title->getArticleID(), true ) . ' ' .
$this->linkRenderer->makeLink( $title, null ) . "<br />\n" $this->linkRenderer->makeLink( $title, null ) . "<br />\n"
); );
} }