From 4c45329df0a546c070239ff34ce6d7252507bdb4 Mon Sep 17 00:00:00 2001 From: Alex <40072887+alexdcrane@users.noreply.github.com> Date: Thu, 13 Nov 2025 09:52:13 -0700 Subject: [PATCH] Update links to use new active calls (#7611) * Update links to use new active calls * Update call_broadcast_send.php * Update system_status.php --- app/call_broadcast/call_broadcast_send.php | 2 +- app/switch/resources/dashboard/switch_status.php | 2 +- app/system/resources/dashboard/system_status.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/call_broadcast/call_broadcast_send.php b/app/call_broadcast/call_broadcast_send.php index 1af7924e00..c0571808db 100644 --- a/app/call_broadcast/call_broadcast_send.php +++ b/app/call_broadcast/call_broadcast_send.php @@ -230,7 +230,7 @@ echo " \n"; echo " \n"; echo " \n"; echo "
\n"; - echo " ".$text['label-view-calls']."\n"; + echo " ".$text['label-view-calls']."\n"; echo "
\n"; } diff --git a/app/switch/resources/dashboard/switch_status.php b/app/switch/resources/dashboard/switch_status.php index e7bc5677d6..9fff85aacc 100644 --- a/app/switch/resources/dashboard/switch_status.php +++ b/app/switch/resources/dashboard/switch_status.php @@ -67,7 +67,7 @@ preg_match("/(\d+)\s+session\(s\)\s+\-\speak/", $tmp, $matches); $channels = $matches[1] ? $matches[1] : 0; if (permission_exists('call_active_view')) { - $tr_link_channels = "href='".PROJECT_PATH."/app/calls_active/calls_active.php'"; + $tr_link_channels = "href='".PROJECT_PATH."/app/active_calls/active_calls.php'"; } } diff --git a/app/system/resources/dashboard/system_status.php b/app/system/resources/dashboard/system_status.php index 2c758a194e..88e7bd4cf5 100644 --- a/app/system/resources/dashboard/system_status.php +++ b/app/system/resources/dashboard/system_status.php @@ -399,7 +399,7 @@ $matches = Array(); preg_match("/(\d+)\s+session\(s\)\s+\-\speak/", $tmp, $matches); $channels = !empty($matches[1]) ? $matches[1] : 0; - $tr_link = "href='".PROJECT_PATH."/app/calls_active/calls_active.php'"; + $tr_link = "href='".PROJECT_PATH."/app/active_calls/active_calls.php'"; echo "\n"; echo "".$text['label-channels']."\n"; echo "".$channels."\n";