From: <var...@us...> - 2012-12-11 15:49:02
|
Revision: 8646 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=8646&view=rev Author: vargenau Date: 2012-12-11 15:48:55 +0000 (Tue, 11 Dec 2012) Log Message: ----------- No return after exit Modified Paths: -------------- trunk/lib/plugin/PageDump.php Modified: trunk/lib/plugin/PageDump.php =================================================================== --- trunk/lib/plugin/PageDump.php 2012-12-11 15:21:43 UTC (rev 8645) +++ trunk/lib/plugin/PageDump.php 2012-12-11 15:48:55 UTC (rev 8646) @@ -140,8 +140,7 @@ // Here comes our prepared mime file echo $mailified; - exit; // noreturn! php exits. - return; + exit(); // noreturn! php exits. } // We are displaing inline preview in a WikiPage, so wrap the // text if it is too long--unless quoted-printable (TODO). This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |