diff options
author | Igor Scheller <igor.scheller@igorshp.de> | 2018-10-31 12:48:22 +0100 |
---|---|---|
committer | msquare <msquare@notrademark.de> | 2018-10-31 13:43:23 +0100 |
commit | 88f3bafa5e41217b5a7dd49271429099515de9c8 (patch) | |
tree | 1e76d4aea0220561286106e3900a5a2587a1f5da /includes/pages/user_questions.php | |
parent | 82b22160fde48e726e7413c0f93bbf932d148b4c (diff) |
Replaced `Auth()` with `auth()`
Diffstat (limited to 'includes/pages/user_questions.php')
-rw-r--r-- | includes/pages/user_questions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/pages/user_questions.php b/includes/pages/user_questions.php index c269dbb1..9027ada7 100644 --- a/includes/pages/user_questions.php +++ b/includes/pages/user_questions.php @@ -16,7 +16,7 @@ function questions_title() */ function user_questions() { - $user = Auth()->user(); + $user = auth()->user(); $request = request(); if (!$request->has('action')) { |