Fixed acl on discovery tasklist
This commit is contained in:
parent
810db1eec4
commit
2ee187ae53
|
@ -448,6 +448,10 @@ class DiscoveryTaskList extends HTML
|
|||
$table->align[9] = 'left';
|
||||
|
||||
foreach ($recon_tasks as $task) {
|
||||
if ($this->aclMulticheck('AR|AW|AM', $task['id_group']) === false) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$no_operations = false;
|
||||
$data = [];
|
||||
$server_name = servers_get_name($task['id_recon_server']);
|
||||
|
|
|
@ -254,7 +254,7 @@ class HTML
|
|||
*
|
||||
* @return boolean Alowed or not.
|
||||
*/
|
||||
public function aclMulticheck($access=null)
|
||||
public function aclMulticheck($access=null, $id_group=0)
|
||||
{
|
||||
global $config;
|
||||
|
||||
|
@ -268,7 +268,7 @@ class HTML
|
|||
foreach ($perms as $perm) {
|
||||
$allowed = $allowed || (bool) check_acl(
|
||||
$config['id_user'],
|
||||
0,
|
||||
$id_group,
|
||||
$perm
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue