Adding direction mark in Special:Protectedpages, between the page name and the size.
This commit is contained in:
parent
455feda3ac
commit
866ec67de9
1 changed files with 2 additions and 1 deletions
|
|
@ -52,7 +52,7 @@ class ProtectedPagesForm {
|
|||
* Callback function to output a restriction
|
||||
*/
|
||||
function formatRow( $row ) {
|
||||
global $wgUser, $wgLang;
|
||||
global $wgUser, $wgLang, $wgContLang;
|
||||
|
||||
wfProfileIn( __METHOD__ );
|
||||
|
||||
|
|
@ -89,6 +89,7 @@ class ProtectedPagesForm {
|
|||
$stxt = ' <small>' . wfMsgHtml('historyempty') . '</small>';
|
||||
else
|
||||
$stxt = ' <small>' . wfMsgHtml('historysize', $wgLang->formatNum( $size ) ) . '</small>';
|
||||
$stxt = $wgContLang->getDirMark() . $stxt;
|
||||
}
|
||||
wfProfileOut( __METHOD__ );
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue