mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
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:
@@ -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";
|
||||
}
|
||||
|
||||
@@ -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'";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user