Index: trunk/phase3/includes/LogEventsList.php |
— | — | @@ -41,7 +41,7 @@ |
42 | 42 | $messages = array( 'revertmerge', 'protect_change', 'unblocklink', 'change-blocklink', |
43 | 43 | 'revertmove', 'undeletelink', 'revdel-restore', 'rev-delundel', 'hist', 'pipe-separator' ); |
44 | 44 | foreach( $messages as $msg ) { |
45 | | - $this->message[$msg] = wfMsgExt( $msg, array( 'escape' ) ); |
| 45 | + $this->message[$msg] = wfMsgExt( $msg, array( 'escapenoentities' ) ); |
46 | 46 | } |
47 | 47 | } |
48 | 48 | } |
— | — | @@ -93,7 +93,7 @@ |
94 | 94 | } |
95 | 95 | |
96 | 96 | private function getFilterLinks( $logType, $filter ) { |
97 | | - global $wgTitle, $wgLang; |
| 97 | + global $wgTitle; |
98 | 98 | // show/hide links |
99 | 99 | $messages = array( wfMsgHtml( 'show' ), wfMsgHtml( 'hide' ) ); |
100 | 100 | // Option value -> message mapping |
— | — | @@ -106,7 +106,7 @@ |
107 | 107 | $links[$type] = wfMsgHtml( "log-show-hide-{$type}", $link ); |
108 | 108 | } |
109 | 109 | // Build links |
110 | | - return $wgLang->pipeList( $links ); |
| 110 | + return implode( ' | ', $links ); |
111 | 111 | } |
112 | 112 | |
113 | 113 | private function getDefaultQuery() { |