In '/ZFDebug/Controller/Plugin/Debug.php' v1.5 on line #62 it reads:
public static $standardPlugins = array('Cache', 'Html', 'Database',
'Exception', 'File', 'Memory', 'Registry', 'Time', 'Variables');
Why is 'Auth' not included in this list?
When I set up my options array like this:
$options = array(
'plugins' => array(
'Variables',
'File',
'Memory',
'Time',
'Registry',
'Database' => array('adapter' => $dbAdapter),
'Auth',
'Html',
'Exception',
)
);
It gives me a PHP error 'failed to open stream' because Auth is not
included in the standard plugins list. If I take Auth out, it works, if I
edit Debug.php to include Auth in the standard plugins it works. Is there a
reason why Auth is left out of the standard plugins list?
Original issue reported on code.google.com by bob.nel...@gmail.com on 24 Mar 2010 at 5:01
Original issue reported on code.google.com by
bob.nel...@gmail.com
on 24 Mar 2010 at 5:01