Merge "Replace use of getDirMark with HTML markup"

This commit is contained in:
jenkins-bot 2024-10-05 17:32:34 +00:00 committed by Gerrit Code Review
commit 7aaf9f42be

View file

@ -340,7 +340,9 @@ class CategoryTree {
$label = $title->getPrefixedText();
}
$link = $this->linkRenderer->makeLink( $title, $label );
$contLang = MediaWikiServices::getInstance()->getContentLanguage();
$link = Html::rawElement( 'bdi', [ 'dir' => $contLang->getDir() ],
$this->linkRenderer->makeLink( $title, $label ) );
$count = false;
$s = '';
@ -451,8 +453,6 @@ class CategoryTree {
# numbers and commas get messed up in a mixed dir env
'dir' => $context->getLanguage()->getDir()
];
$contLang = MediaWikiServices::getInstance()->getContentLanguage();
$s = $contLang->getDirMark() . ' ';
# Create a list of category members with only non-zero member counts
$memberNums = [];
@ -473,7 +473,7 @@ class CategoryTree {
# Only $5 is actually used in the default message.
# Other arguments can be used in a customized message.
$s .= Html::rawElement(
$s = ' ' . Html::rawElement(
'span',
$attr,
$context->msg( 'categorytree-member-num' )