From ab8093cd3b4991537aab563ac85cc7308c670067 Mon Sep 17 00:00:00 2001 From: Roan Kattouw Date: Sat, 1 Mar 2008 09:45:52 +0000 Subject: [PATCH] Fixing bug 13100 by removing a redundant line in EditPage::initialiseForm() ($this->summary is empty by default). --- includes/EditPage.php | 1 - 1 file changed, 1 deletion(-) diff --git a/includes/EditPage.php b/includes/EditPage.php index 3c964dd1c3..c03cceb2e2 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -992,7 +992,6 @@ class EditPage { */ function initialiseForm() { $this->edittime = $this->mArticle->getTimestamp(); - $this->summary = ''; $this->textbox1 = $this->getContent(false); if ($this->textbox1 === false) return false; -- 2.20.1