Index: trunk/phase3/includes/specials/SpecialRevisiondelete.php |
— | — | @@ -1398,9 +1398,9 @@ |
1399 | 1399 | if ( $this->isDeleted() ) { |
1400 | 1400 | # Hidden files... |
1401 | 1401 | if ( !$this->canView() ) { |
1402 | | - return $date; |
| 1402 | + $link = $date; |
1403 | 1403 | } else { |
1404 | | - return $this->special->skin->link( |
| 1404 | + $link = $this->special->skin->link( |
1405 | 1405 | $this->special->getTitle(), |
1406 | 1406 | $date, array(), |
1407 | 1407 | array( |
— | — | @@ -1409,6 +1409,7 @@ |
1410 | 1410 | ) |
1411 | 1411 | ); |
1412 | 1412 | } |
| 1413 | + return '<span class="history-deleted">' . $link . '</span>'; |
1413 | 1414 | } else { |
1414 | 1415 | # Regular files... |
1415 | 1416 | $url = $this->file->getUrl(); |