Thanks, google groups, for breaking my code :D
Here it is again, hopefully more readable:
public function cycle_block($args) {
$num = ++$this->cycle_num;
$this->cycle_stack[] = $num;
$this->cycles[$num] = 1;
$var = '$outline_cycle_' . $num;
- $this->compiler->code("!isset($var) ? $var = 0 : $var++; if ($var ==
1) {");
+ $this->compiler->code("!isset($var) ? $var = 1 : $var++; if ($var ==
1) {");
}
*fingers crossed*