mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2026-05-28 04:35:53 -04:00
QuickTable: fix 'return value in write contex'...
...for older PHP versions
This commit is contained in:
parent
5a37ba8c68
commit
b40f4a7ab7
1 changed files with 2 additions and 1 deletions
|
|
@ -281,7 +281,8 @@ abstract class QuickTable implements Paginatable
|
|||
protected function listTableClasses()
|
||||
{
|
||||
$classes = array('simple', 'common-table', 'table-row-selectable');
|
||||
if (! empty($this->getMultiselectProperties())) {
|
||||
$multi = $this->getMultiselectProperties();
|
||||
if (! empty($multi)) {
|
||||
$classes[] = 'multiselect';
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue