Add acl to let the imported users change their password

This commit is contained in:
Miles Lott 2001-04-17 16:32:14 +00:00
parent 311d7e65d9
commit 137fe5c1eb

View File

@ -184,6 +184,10 @@
$acl->add('phpgw_group',$defaultgroupid,1);
}
// Now add the acl to let them change their password
$acl->delete('preferences','changepassword',$thisacctid,1);
$acl->add('preferences','changepassword',$thisacctid,1);
// Save these new acls.
$acl->save_repository();
}