Adding direction mark in Special:Protectedpages, between the page name and the size.

This commit is contained in:
Rotem Liss 2007-10-29 18:46:03 +00:00
parent 455feda3ac
commit 866ec67de9

View file

@ -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__ );