Add default acl hook to be called by admin for new accounts

This commit is contained in:
Miles Lott 2001-02-11 00:42:31 +00:00
parent ace52f5b19
commit c5055a9d04

View File

@ -0,0 +1,6 @@
<?php
global $acl,$account_id;
// Add default acl to allow the new user to access their
// addressbook
$acl->add('addressbook','u_'.$account_id,1);
?>