mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Check if ispopup is not empty
This commit is contained in:
@@ -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);
|
||||
?>
|
||||
|
||||
@@ -183,7 +183,7 @@ function echoQrbCalcLink($mygrid, $grid, $vucc, $isVisitor = false) {
|
||||
<?php
|
||||
if ($results) {
|
||||
$tableid = "contacttable";
|
||||
if (isset($ispopup)) {
|
||||
if (!empty($ispopup)) {
|
||||
$tableid = "displaycontactstable";
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user