Index: trunk/extensions/AbuseFilter/special/SpecialAbuseLog.php |
— | — | @@ -223,6 +223,7 @@ |
224 | 224 | function showDetails( $id ) { |
225 | 225 | $out = $this->getOutput(); |
226 | 226 | if ( !self::canSeeDetails() ) { |
| 227 | + $out->addWikiMsg( 'abusefilter-log-cannot-see-details' ); |
227 | 228 | return; |
228 | 229 | } |
229 | 230 | |
— | — | @@ -265,9 +266,9 @@ |
266 | 267 | $formattedDiff = $diffEngine->generateDiffBody( $old_wikitext, $new_wikitext ); |
267 | 268 | |
268 | 269 | static $colDescriptions = "<col class='diff-marker' /> |
269 | | - <col class='diff-content' /> |
270 | | - <col class='diff-marker' /> |
271 | | - <col class='diff-content' />"; |
| 270 | + <col class='diff-content' /> |
| 271 | + <col class='diff-marker' /> |
| 272 | + <col class='diff-content' />"; |
272 | 273 | |
273 | 274 | $formattedDiff = |
274 | 275 | "<table class='diff'>$colDescriptions<tbody>$formattedDiff</tbody></table>"; |