Skip to content

Commit

Permalink
Update ImportListView.php
Browse files Browse the repository at this point in the history
  • Loading branch information
pgorod committed Dec 19, 2023
1 parent 3c84892 commit 02b732c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/Import/views/ImportListView.php
Expand Up @@ -128,7 +128,7 @@ public function display($return = false)
$this->ss->assign('navStrings', $navStrings);
$this->ss->assign('pageData', $this->generatePaginationData());
$this->ss->assign('tableID', $this->tableID);
$this->ss->assign('colCount', is_countable($this->headerColumns) ? count($this->headerColumns : 0));
$this->ss->assign('colCount', is_countable($this->headerColumns) ? count($this->headerColumns) : 0);
$this->ss->assign('APP', $app_strings);
$this->ss->assign('rowColor', array('oddListRow', 'evenListRow'));
$this->ss->assign('displayColumns', $this->headerColumns);
Expand Down

0 comments on commit 02b732c

Please sign in to comment.