From bf311d9415a37646537a2160a73415330e8a542d Mon Sep 17 00:00:00 2001 From: Nick Jenkins Date: Thu, 1 Nov 2007 06:59:43 +0000 Subject: [PATCH] Prevent PHP E_STRICT notice: Only variables should be assigned by reference in includes/EditPage.php on line 93. --- includes/EditPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/EditPage.php b/includes/EditPage.php index 7814423b4a..e25cca8a78 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -90,7 +90,7 @@ class EditPage { $this->mArticle =& $article; global $wgTitle; $this->uiTitle =& $wgTitle; - $this->dbTitle =& $article->getTitle(); + $this->dbTitle = $article->getTitle(); # Placeholders for text injection by hooks (empty per default) $this->editFormPageTop = -- 2.20.1