Update links to use new active calls (#7611)

* Update links to use new active calls

* Update call_broadcast_send.php

* Update system_status.php
This commit is contained in:
Alex
2025-11-13 09:52:13 -07:00
committed by GitHub
parent 2264bca3ef
commit 4c45329df0
3 changed files with 3 additions and 3 deletions

View File

@@ -230,7 +230,7 @@
echo " <table width='100%'>\n";
echo " <tr>\n";
echo " <td align='center'>\n";
echo " <a href='".PROJECT_PATH."/app/calls_active/calls_active.php'>".$text['label-view-calls']."</a>\n";
echo " <a href='".PROJECT_PATH."/app/active_calls/active_calls.php'>".$text['label-view-calls']."</a>\n";
echo " </td>\n";
echo " </table>\n";
}

View File

@@ -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'";
}
}

View File

@@ -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 "<tr ".$tr_link.">\n";
echo "<td valign='top' class='".$row_style[$c]." hud_text'><a ".$tr_link.">".$text['label-channels']."</a></td>\n";
echo "<td valign='top' class='".$row_style[$c]." hud_text' style='text-align: right;'>".$channels."</td>\n";