From: Roan Kattouw Date: Sat, 1 Mar 2008 09:45:52 +0000 (+0000) Subject: Fixing bug 13100 by removing a redundant line in EditPage::initialiseForm() ($this... X-Git-Tag: 1.31.0-rc.0~49298 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=ab8093cd3b4991537aab563ac85cc7308c670067;p=lhc%2Fweb%2Fwiklou.git Fixing bug 13100 by removing a redundant line in EditPage::initialiseForm() ($this->summary is empty by default). --- 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;