From: Yuri Astrakhan Date: Tue, 10 Jun 2014 14:51:47 +0000 (-0700) Subject: Removed undeclared var from wfDebug() X-Git-Tag: 1.31.0-rc.0~15409^2 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=6d70d337e33dcc0c619dea94812d2bed57e5d96e;p=lhc%2Fweb%2Fwiklou.git Removed undeclared var from wfDebug() Change-Id: Ie8a0ff2f9347c6ed2a04f7c99de6c43958dfd1f7 --- diff --git a/includes/WikiPage.php b/includes/WikiPage.php index db8e104b9c..52c5cccdfa 100644 --- a/includes/WikiPage.php +++ b/includes/WikiPage.php @@ -1585,7 +1585,7 @@ class WikiPage implements Page, IDBAccessObject { if ( !$rev ) { wfDebug( __METHOD__ . " asked for bogus section (page: " . - $this->getId() . "; section: $section; edittime: $edittime)\n" ); + $this->getId() . "; section: $section)\n" ); wfProfileOut( __METHOD__ ); return null; }