From 22c185a1bddcd74a76ee4efece109efc5c83a6e9 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Mon, 28 Aug 2017 21:37:35 -0600 Subject: [PATCH] Update user_dashboard.php --- core/user_settings/user_dashboard.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/user_settings/user_dashboard.php b/core/user_settings/user_dashboard.php index 3165249e56..5059963a57 100644 --- a/core/user_settings/user_dashboard.php +++ b/core/user_settings/user_dashboard.php @@ -709,7 +709,7 @@ switch ($category) { case 'users': if (!permission_exists('user_view')) { continue 2; } - $url = '/core/users/index.php'; + $url = '/core/users/users.php'; break; case 'call_center_queues': if (!permission_exists('call_center_active_view')) { continue 2; } @@ -775,7 +775,7 @@ $hud_stat_title = $text['label-active_extensions']; } else if ((permission_exists('user_view') || if_group("superadmin")) && file_exists($_SERVER["DOCUMENT_ROOT"].PROJECT_PATH."/core/users/")) { - $onclick = "onclick=\"document.location.href='".PROJECT_PATH."/core/users/index.php'\""; + $onclick = "onclick=\"document.location.href='".PROJECT_PATH."/core/users/users.php'\""; $hud_stat = $stats[$scope]['users']['total'] - $stats[$scope]['users']['disabled']; $hud_stat_title = $text['label-active_users']; } @@ -844,7 +844,7 @@ //users if ((permission_exists('user_view') || if_group("superadmin")) && file_exists($_SERVER["DOCUMENT_ROOT"].PROJECT_PATH."/core/users/")) { - $tr_link = "href='".PROJECT_PATH."/core/users/index.php'"; + $tr_link = "href='".PROJECT_PATH."/core/users/users.php'"; $hud[$n]['html'] .= "\n"; $hud[$n]['html'] .= "".$text['label-users']."\n"; $hud[$n]['html'] .= "".$stats[$scope]['users']['disabled']."\n";