From: mrbluesky Date: Sat, 11 Feb 2012 01:11:07 +0000 (+0000) Subject: Follow-up to r111091. Dont paste md5 in the code. X-Git-Tag: 1.31.0-rc.0~24780 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=68cad93a447be3e7824c79c0663967ee727a6244;p=lhc%2Fweb%2Fwiklou.git Follow-up to r111091. Dont paste md5 in the code. --- diff --git a/includes/EditPage.php b/includes/EditPage.php index cd91282c8e..3a560b88be 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -1808,7 +1808,7 @@ class EditPage { // If a summary has been preset using &summary= we dont want to prompt for // a different summary. Only prompt for a summary if the summary is blanked. // (Bug 17416) - $this->autoSumm = 'd41d8cd98f00b204e9800998ecf8427e'; # == md5('') + $this->autoSumm = md5(''); } $autosumm = $this->autoSumm ? $this->autoSumm : md5( $this->summary );