From: <var...@us...> - 2009-02-25 13:39:12
|
Revision: 6558 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6558&view=rev Author: vargenau Date: 2009-02-25 13:38:57 +0000 (Wed, 25 Feb 2009) Log Message: ----------- Wikicreole table was not processed at end of page Modified Paths: -------------- trunk/lib/BlockParser.php Modified: trunk/lib/BlockParser.php =================================================================== --- trunk/lib/BlockParser.php 2009-02-25 13:21:36 UTC (rev 6557) +++ trunk/lib/BlockParser.php 2009-02-25 13:38:57 UTC (rev 6558) @@ -1069,10 +1069,10 @@ $intable = true; while ($intable) { - if (($line = $input->nextLine()) === false) { + if ((($line = $input->nextLine()) === false) && !$intable) { $input->setPos($pos); return false; - } + } if (!$line) { $intable = false; $trimline = $line; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |