From 513ff7975d1ac437490cfe1a875c856c9140f6cb Mon Sep 17 00:00:00 2001 From: aude Date: Mon, 18 Aug 2014 12:51:40 +0200 Subject: [PATCH] Rename variable in RequestContext, $t => $title Change-Id: Id416816f1c291fea9b7b97b41290b5078936705b --- includes/context/RequestContext.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/context/RequestContext.php b/includes/context/RequestContext.php index 00733d8169..9c8a781cd9 100644 --- a/includes/context/RequestContext.php +++ b/includes/context/RequestContext.php @@ -123,10 +123,10 @@ class RequestContext implements IContextSource { /** * Set the Title object * - * @param Title $t + * @param Title $title */ - public function setTitle( Title $t ) { - $this->title = $t; + public function setTitle( Title $title ) { + $this->title = $title; // Erase the WikiPage so a new one with the new title gets created. $this->wikipage = null; } -- 2.20.1