mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CategoryTree
synced 2024-11-27 09:43:06 +00:00
Replace use of getDirMark with HTML markup
Bug: T375975 Depends-On: I2ee6d8fb9161a5434eacad819c6d7784aee8aac3 Change-Id: Ia1ab65222c486ea89e6b916fd1d5a6860439205e
This commit is contained in:
parent
27dfa4bd86
commit
fe71840c56
|
@ -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 = '';
|
||||
|
@ -450,8 +452,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 = [];
|
||||
|
@ -472,7 +472,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' )
|
||||
|
|
Loading…
Reference in a new issue