From 6f2cde75238e54042b35c0fb26f9113014bb5ac2 Mon Sep 17 00:00:00 2001 From: Nate Jones Date: Wed, 15 Apr 2015 23:19:50 +0000 Subject: [PATCH] Operator Panel: Fix to show Status of User assigned to an Extension. --- app/operator_panel/resources/functions/get_call_activity.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/operator_panel/resources/functions/get_call_activity.php b/app/operator_panel/resources/functions/get_call_activity.php index 08c7e8ef66..64ccdd63a0 100644 --- a/app/operator_panel/resources/functions/get_call_activity.php +++ b/app/operator_panel/resources/functions/get_call_activity.php @@ -30,7 +30,7 @@ function get_call_activity() { foreach($extensions as &$row) { if ($row['user_uuid'] != '') { $ext_user_status[$row['user_uuid']] = $row['user_status']; - unset($row['user_uuid'], $row['user_status']); + unset($row['user_status']); } }