From d245bb37a830e36d8c036cddea0bfe285ec96411 Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Tue, 10 Jul 2012 17:19:07 +0200 Subject: [PATCH] OutputPage::setRevisionTimestamp typo in parameter 'stmap' instead of 'stamp'. I have updated: - doc block - function argument - inner use of the argument Change-Id: Ie7b663372632e4044464ae49ab42dce500838985 --- includes/OutputPage.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/OutputPage.php b/includes/OutputPage.php index d550cb6b13..ac90e6741b 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -1362,11 +1362,11 @@ class OutputPage extends ContextSource { * Set the timestamp of the revision which will be displayed. This is used * to avoid a extra DB call in Skin::lastModified(). * - * @param $revid Mixed: string, or null + * @param $timestamp Mixed: string, or null * @return Mixed: previous value */ - public function setRevisionTimestamp( $timestmap ) { - return wfSetVar( $this->mRevisionTimestamp, $timestmap ); + public function setRevisionTimestamp( $timestamp) { + return wfSetVar( $this->mRevisionTimestamp, $timestamp ); } /** -- 2.20.1