From 0464db92c3bb40453770374512b9182c3186b64b Mon Sep 17 00:00:00 2001 From: zarzuelo Date: Mon, 12 Apr 2010 10:30:58 +0000 Subject: [PATCH] 2010-04-12 Sergio Martin * godmode/alerts/alert_list.php: Added Create button for Feature Request 2985798 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2556 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 +++++ pandora_console/godmode/alerts/alert_list.php | 10 +++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 05aac5cbb7..c809a1fea1 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2010-04-12 Sergio Martin + + * godmode/alerts/alert_list.php: Added Create button for + Feature Request 2985798 + 2010-04-12 Junichi Satoh * include/help/ja/help_configure_gis_map.php, diff --git a/pandora_console/godmode/alerts/alert_list.php b/pandora_console/godmode/alerts/alert_list.php index 420ef47bad..65d99be1ac 100644 --- a/pandora_console/godmode/alerts/alert_list.php +++ b/pandora_console/godmode/alerts/alert_list.php @@ -190,8 +190,15 @@ else { $groups = array(1 => __('All')); } $agents = get_group_agents (array_keys ($groups), false, "none"); - + require_once('godmode/alerts/alert_list.list.php'); + + echo '
'; + echo '
'; + print_submit_button (__('Create'), 'crtbtn', false, 'class="sub next"'); + echo '
'; + echo '
'; + return; break; case 'builder': @@ -203,6 +210,7 @@ else { } require_once('godmode/alerts/alert_list.builder.php'); + return; break; }