diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 90726de12d..41d495fa51 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,10 @@ +2013-07-17 Sergio Martin + + * operation/events/events_list.php: Delete unnecessary ACL + check + + * images/up.png: Add missed image to new styles + 2013-07-17 Miguel de Dios * godmode/agentes/configurar_agente.php: fixed the default value for diff --git a/pandora_console/images/up.png b/pandora_console/images/up.png index 30d005f256..697eaf40c2 100644 Binary files a/pandora_console/images/up.png and b/pandora_console/images/up.png differ diff --git a/pandora_console/operation/events/events_list.php b/pandora_console/operation/events/events_list.php index 30785b3fee..b69f02af7f 100644 --- a/pandora_console/operation/events/events_list.php +++ b/pandora_console/operation/events/events_list.php @@ -451,7 +451,7 @@ $table->rowclass[] = ''; $data = array(); $data[0] = '
'; -if (check_acl ($config["id_user"], 0, "EW") || check_acl ($config["id_user"], 0, "EM") ) { +if (check_acl ($config["id_user"], 0, "EW")) { $data[0] .= '' . html_print_image("images/disk.png", true, array("border" => '0', "title" => __('Save filter'), "alt" => __('Save filter'))) . '  '; } $data[0] .= '' . html_print_image("images/load.png", true, array("border" => '0', "title" => __('Load filter'), "alt" => __('Load filter'))) . '
';