10-31-2016, 01:40 PM
Ahh. One more thought...since your users are going to have this pretty powerful feature, I would change line 111 of admin_users.php from
to
This will give you a trail of who created each account. In the event that there is mischief, you will know the source of it.
Code:
'account_owner' => 1,
to
Code:
'account_owner' => $user->data()->id,
This will give you a trail of who created each account. In the event that there is mischief, you will know the source of it.