diff --git a/application/models/CustomControllerAclManager.php b/application/models/CustomControllerAclManager.php index fc37c333..4a957fd7 100755 --- a/application/models/CustomControllerAclManager.php +++ b/application/models/CustomControllerAclManager.php @@ -23,6 +23,7 @@ $this->acl->add(new Zend_Acl_Resource('admin')); $this->acl->add(new Zend_Acl_Resource('upload')); $this->acl->add(new Zend_Acl_Resource('author')); + $this->acl->add(new Zend_Acl_Resource('heihe')); // allow access to everything for all users by default // except for the account management and administration areas $this->acl->allow(); @@ -37,7 +38,7 @@ 'registercomplete')); $this->acl->deny('guest','data',array('download','order')); $this->acl->deny('guest','water',array('download','order')); - + $this->acl->deny('guest','heihe',array('submit')); // allow members access to the account management area $this->acl->allow('guest','author',array('index')); $this->acl->allow('member', 'account');