Details
Description
http://framework.zend.com/developer/ticket/99
Zend_View_Abstract::_loadClass() calls is_readable() to find out if the particular file exists on the path.
This causes problems when you want to have a set of common view helpers for multiple projects. In my case, I use a directory called Akrabat/View/Helper as part of a tree that mirrors the ZF tree for consistency.)
My preference would be to change
if (is_readable($dir . $file)) {
to
if (Zend::isReadable($dir . $file)) {
to solve this problem.
Suggested patch attached.
05/28/06 16:18:19: Modified by rob.nospam@akrabat.com
Suggested patch v1
- attachment Zend_View_Abstract.patch added.
Suggested patch v1