Add acl for changepassword

This commit is contained in:
Miles Lott 2001-04-19 00:43:16 +00:00
parent da00f85567
commit b1114f43d2

View File

@ -167,6 +167,11 @@
$acl->delete('phpgw_group',$thisacctid,1);
$acl->add('phpgw_group',$thisacctid,1);
// Now add the acl to let them change their password
$acl->delete('preferences','changepassword',$thisacctid,1);
$acl->add('preferences','changepassword',$thisacctid,1);
$acl->save_repository();
}
}