Index: trunk/phase3/includes/specials/SpecialRevisiondelete.php |
— | — | @@ -181,7 +181,7 @@ |
182 | 182 | * Show some useful links in the subtitle |
183 | 183 | */ |
184 | 184 | protected function showConvenienceLinks() { |
185 | | - global $wgOut, $wgUser; |
| 185 | + global $wgOut, $wgUser, $wgLang; |
186 | 186 | # Give a link to the logs/hist for this page |
187 | 187 | if( $this->targetObj ) { |
188 | 188 | $links = array(); |
— | — | @@ -210,7 +210,7 @@ |
211 | 211 | ); |
212 | 212 | } |
213 | 213 | # Logs themselves don't have histories or archived revisions |
214 | | - $wgOut->setSubtitle( '<p>'.implode($links,' / ').'</p>' ); |
| 214 | + $wgOut->setSubtitle( '<p>' . $wgLang->pipeList( $links ) . '</p>' ); |
215 | 215 | } |
216 | 216 | } |
217 | 217 | |