From 3c4ce4252ce10135241c9b54f7bd8d015c2f1326 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 19 Jun 2009 19:30:55 +0000 Subject: [PATCH] Follow-up to r51579: fix copy paste error (time->date) per CR --- includes/Article.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Article.php b/includes/Article.php index e34f30b5f5..486c8bb4c7 100644 --- a/includes/Article.php +++ b/includes/Article.php @@ -3083,7 +3083,7 @@ class Article { $current = ( $oldid == $this->mLatest ); $td = $wgLang->timeanddate( $this->mTimestamp, true ); - $tddate = $wgLang->time( $this->mTimestamp, true ); + $tddate = $wgLang->date( $this->mTimestamp, true ); $tdtime = $wgLang->time( $this->mTimestamp, true ); $sk = $wgUser->getSkin(); $lnk = $current -- 2.20.1