Permalink
Switch branches/tags
Nothing to show
Find file
Fetching contributors…
Cannot retrieve contributors at this time
12 lines (11 sloc) 481 Bytes
--- textile-2.0.0/classTextile.php~ 2006-10-17 18:31:53.000000000 -0400
+++ textile-2.0.0/classTextile.php 2009-12-15 23:56:12.000000000 -0500
@@ -466,7 +466,7 @@
function fList($m)
{
$text = explode("\n", $m[0]);
- foreach($text as $line) {
+ while ($line = current($text)) {
$nextline = next($text);
if (preg_match("/^([#*]+)($this->a$this->c) (.*)$/s", $line, $m)) {
list(, $tl, $atts, $content) = $m;