Change Language::timeanddate to userTimeAndDate in RevisionList
authorumherirrender <umherirrender_de.wp@web.de>
Sat, 17 Jan 2015 19:31:18 +0000 (20:31 +0100)
committerUmherirrender <umherirrender_de.wp@web.de>
Sun, 12 Apr 2015 08:07:12 +0000 (08:07 +0000)
This avois using $wgUser when formatting the timestamp

This was done in the overrides with
I30d88822d8ede5c138dd5403a998dd722f950bbe
The htmlspecialchars was added with
Ie1f16029020f980abba35d6322b89c95326f107b to the overrides.

Change-Id: Iaa12064502b343f0f47178f4848eed72662b422c

includes/RevisionList.php

index d10b541..0f77111 100644 (file)
@@ -338,7 +338,8 @@ class RevisionItem extends RevisionItemBase {
         * @return string
         */
        protected function getRevisionLink() {
-               $date = $this->list->getLanguage()->timeanddate( $this->revision->getTimestamp(), true );
+               $date = htmlspecialchars( $this->list->getLanguage()->userTimeAndDate(
+                       $this->revision->getTimestamp(), $this->list->getUser() ) );
                if ( $this->isDeleted() && !$this->canViewContent() ) {
                        return $date;
                }