Commit a29e6770 by netz.coop eG

Sysoutput Funktionen werden nur noch je nach bedarf aufgerufen

1 parent 1d3cb290
Showing with 8 additions and 0 deletions
......@@ -163,11 +163,19 @@ if (!isset($_SESSION['user_id'])) {
}
$_POST[$acttable] = 'print';
$sysout = new Sytemoutput();
if ($acttable === 'groups') {
$array_pclistgroups = $db->getpclistgroupsarray();
$sysout->createfw($array_pclistgroups);
} else if ($acttable === 'domains') {
$domaingroupsarray = $db->getdomaingroupsarray();
$sysout->createhosts($domaingroupsarray);
} else if ($acttable === 'close_fw_cron') {
$array_closefwcron = $db->getclosefwcronarray();
$sysout->closefwcron($array_closefwcron);
}
}
/**
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!