From 0539c269cc72ada69d5723248ac27a30b05459f7 Mon Sep 17 00:00:00 2001 From: DariusIII Date: Tue, 22 May 2018 15:46:50 +0200 Subject: [PATCH] Add $title variable to Admin/UserController --- Changelog | 1 + app/Http/Controllers/Admin/UserController.php | 2 ++ 2 files changed, 3 insertions(+) diff --git a/Changelog b/Changelog index 73e0f68bb..6eaa939f1 100755 --- a/Changelog +++ b/Changelog @@ -1,4 +1,5 @@ 2018-05-22 DariusIII + * Fix: Add $title variable to Admin/UserController * Fix: Define $title variable in Admin/GroupController * Chg: Remove Charisma and Omicron themes from main repo and move them into separate repositories * Chg: Update 404 page diff --git a/app/Http/Controllers/Admin/UserController.php b/app/Http/Controllers/Admin/UserController.php index 5fb1de932..704b6d8ea 100644 --- a/app/Http/Controllers/Admin/UserController.php +++ b/app/Http/Controllers/Admin/UserController.php @@ -91,6 +91,8 @@ class UserController extends BasePageController 'notes' => '', ]; + $title = 'View User'; + // set the current action $action = $request->input('action') ?? 'view';