From 59c2e1304c822124db045e0f7bad15340f1df1c4 Mon Sep 17 00:00:00 2001 From: mdtrooper Date: Mon, 30 Nov 2009 15:42:57 +0000 Subject: [PATCH] 2009-11-30 Miguel de Dios * include/functions_ui.php: show the deault action with other style. Fixes: 2905966 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2146 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 +++++ pandora_console/include/functions_ui.php | 14 ++++++++++++-- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index f79d5534f4..43feec628a 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2009-11-30 Miguel de Dios + + * include/functions_ui.php: show the deault action with other style. + Fixes: 2905966 + 2009-11-30 Miguel de Dios * include/functions_alerts.php: fix deletion of compound alerts in the diff --git a/pandora_console/include/functions_ui.php b/pandora_console/include/functions_ui.php index aa03857208..d163bb7310 100644 --- a/pandora_console/include/functions_ui.php +++ b/pandora_console/include/functions_ui.php @@ -369,10 +369,20 @@ function format_alert_row ($alert, $compound = false, $agent = true, $url = '') } $data[$index['description']] .= $disabledHtmlStart . mb_substr (safe_input ($description), 0, 35) . $disabledHtmlEnd; + $actionDefault = get_db_value_sql("SELECT id_alert_action + FROM talert_templates WHERE id = " . $alert['id_alert_template']); + $actions = get_alert_agent_module_actions ($alert['id']); $actionText = '
    '; - foreach ($actions as $action) - $actionText .= '
  • ' . $action['name'] . '
  • '; + foreach ($actions as $action) { + $defaultTagIni = $defaultTagEnd = ''; + if ($action['id'] == $actionDefault) { + $defaultTagIni = ''; + $defaultTagEnd = ' (' . __('default') . ') '; + } + $actionText .= '
  • ' . $defaultTagIni . $action['name'] . + $defaultTagEnd . '
  • '; + } $actionText .= '
'; $data[$index['action']] = $actionText;