ZF-12022: Typo in example of zend.navigation.containers.html, "Example #4 Removing pages from a container", Line 21
Description
In http://framework.zend.com/manual/en/… under "Example #4 Removing pages from a container", line 21 of the example is incorrect. It reads;
$page3 = $container->findOneByAction('Page 3');
'Page 3' is the label not the action. The Action is 'page3'. So it should read;
$page3 = $container->findOneByAction('page3');
Comments
Posted by Frank Brückner (frosch) on 2012-01-25T10:47:26.000+0000
You're right. I'll fix it.
Thanks for reporting!
Posted by Adam Lundrigan (adamlundrigan) on 2012-02-25T18:46:27.000+0000
Fixed in trunk r24637 Merged to release-1.11 in r24638 ZF2 PR #839: https://github.com/zendframework/zf2/pull/839