Check if ispopup is not empty

This commit is contained in:
phl0
2025-07-01 17:13:01 +02:00
parent f4a7433810
commit a9e569c299
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
<h5><?= __("Filtering on"); ?> <?php echo $filter; ?></h5>
<?php
$data['ispopup'] = $ispopup;
$data['ispopup'] = $ispopup ?? '';
$this->load->view('view_log/partial/log_ajax', $data);
?>

View File

@@ -183,7 +183,7 @@ function echoQrbCalcLink($mygrid, $grid, $vucc, $isVisitor = false) {
<?php
if ($results) {
$tableid = "contacttable";
if (isset($ispopup)) {
if (!empty($ispopup)) {
$tableid = "displaycontactstable";
}