protected function _initAutoload() {
$autoloader = new Zend_Application_Module_Autoloader(array(
'namespace' => 'Default_',
'basePath' => dirname(__FILE__),
));
return $autoloader;
}
i thought if the namespace was 'Default', i dont need to specify it?
eg. their class also has Default_ appended to it
class Default_Model_Guestbook
isit required? or isit better practice?