diff options
author | Frederic Guillot <fred@kanboard.net> | 2017-01-22 22:38:00 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2017-01-22 22:38:00 -0500 |
commit | 10d96bfd668f445249190c52bedb2eb0e7e9410d (patch) | |
tree | 951bcf637b9371529a6552a2efd22e7a84707d9e /app/Controller/UserCreationController.php | |
parent | 2f43d365a0aaeff638eb4731bcff6907b491633a (diff) |
Add user invitations
Diffstat (limited to 'app/Controller/UserCreationController.php')
-rw-r--r-- | app/Controller/UserCreationController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controller/UserCreationController.php b/app/Controller/UserCreationController.php index f0fd34d2..27f1687b 100644 --- a/app/Controller/UserCreationController.php +++ b/app/Controller/UserCreationController.php @@ -54,7 +54,7 @@ class UserCreationController extends BaseController * * @param array $values */ - private function createUser(array $values) + protected function createUser(array $values) { $project_id = empty($values['project_id']) ? 0 : $values['project_id']; unset($values['project_id']); |