diff options
Diffstat (limited to 'app/Controller')
-rw-r--r-- | app/Controller/User.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controller/User.php b/app/Controller/User.php index ee3d47eb..a02dd7be 100644 --- a/app/Controller/User.php +++ b/app/Controller/User.php @@ -93,7 +93,7 @@ class User extends Base */ private function getUser() { - $user = $this->user->getById($this->request->getIntegerParam('user_id'), true); + $user = $this->user->getById($this->request->getIntegerParam('user_id')); if (! $user) { $this->notfound(); |