Index: trunk/phase3/includes/specials/SpecialRevisiondelete.php |
— | — | @@ -1132,7 +1132,7 @@ |
1133 | 1133 | */ |
1134 | 1134 | protected function getRevisionLink() { |
1135 | 1135 | global $wgLang; |
1136 | | - $date = $wgLang->timeanddate( $this->revision->getTimestamp() ); |
| 1136 | + $date = $wgLang->timeanddate( $this->revision->getTimestamp(), true ); |
1137 | 1137 | if ( $this->isDeleted() && !$this->canView() ) { |
1138 | 1138 | return $date; |
1139 | 1139 | } |
— | — | @@ -1254,7 +1254,7 @@ |
1255 | 1255 | protected function getRevisionLink() { |
1256 | 1256 | global $wgLang; |
1257 | 1257 | $undelete = SpecialPage::getTitleFor( 'Undelete' ); |
1258 | | - $date = $wgLang->timeanddate( $this->revision->getTimestamp() ); |
| 1258 | + $date = $wgLang->timeanddate( $this->revision->getTimestamp(), true ); |
1259 | 1259 | if ( $this->isDeleted() && !$this->canView() ) { |
1260 | 1260 | return $date; |
1261 | 1261 | } |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -492,6 +492,7 @@ |
493 | 493 | * (bug 20556) Stub threshold's "other" <input> in Special:Preferences now has a |
494 | 494 | correct type="text" parameter |
495 | 495 | * (bug 482) Don't include TOC in the printable version if it has been hidden |
| 496 | +* Adjust the time according to the user configuration on Special:Revisiondelete |
496 | 497 | |
497 | 498 | == API changes in 1.16 == |
498 | 499 | |