ZF-5976: Example 57.4 doenst work
Description
There is a problem with example 57.4
{quote} <?= foreach($this->news AS $article): ?> <? $this->tabPane("newstab", $article->body, array('title' => $article->title)); ?> <?= endforeach; ?> {quote}
It have to be: {quote} <? foreach($this->news AS $article): ?> <?= $this->tabPane("newstab", $article->body, array('title' => $article->title)); ?> <? endforeach; ?> {quote}
Comments
Posted by Benjamin Eberlei (beberlei) on 2009-03-25T10:50:59.000+0000
Fixed in trunk