Index: trunk/phase3/includes/ChangesList.php |
— | — | @@ -589,6 +589,8 @@ |
590 | 590 | $s .= $this->getLang()->getDirMark(); |
591 | 591 | # Log action text (if any) |
592 | 592 | $this->insertAction( $s, $rc ); |
| 593 | + # LTR/RTL direction mark |
| 594 | + $s .= $this->getLang()->getDirMark(); |
593 | 595 | # Edit or log comment |
594 | 596 | $this->insertComment( $s, $rc ); |
595 | 597 | # Tags |
Index: trunk/phase3/includes/WikiPage.php |
— | — | @@ -1409,7 +1409,7 @@ |
1410 | 1410 | |
1411 | 1411 | $encodedExpiry[$action] = $dbw->encodeExpiry( $expiry[$action] ); |
1412 | 1412 | if ( $restrictions != '' ) { |
1413 | | - $protect_description .= "[$action=$restrictions] ("; |
| 1413 | + $protect_description .= $wgContLang->getDirMark() . "[$action=$restrictions] ("; |
1414 | 1414 | if ( $encodedExpiry[$action] != 'infinity' ) { |
1415 | 1415 | $protect_description .= wfMsgForContent( 'protect-expiring', |
1416 | 1416 | $wgContLang->timeanddate( $expiry[$action], false, false ) , |