Fix Active calls SHOW ALL button

This commit is contained in:
FusionPBX 2023-12-08 21:43:02 -07:00 committed by GitHub
parent ee6b2a4d84
commit a066277460
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -67,10 +67,10 @@
<?php <?php
if ($show == 'all') { if ($show == 'all') {
echo "&source_url = source_url + '&show=all';"; echo "source_url = source_url + '&show=all';";
} }
if (isset($_REQUEST["debug"])) { if (isset($_REQUEST["debug"])) {
echo "&source_url = source_url + '&debug';"; echo "source_url = source_url + '&debug';";
} }
?> ?>
function ajax_get() { function ajax_get() {