2009-11-26 Miguel de Dios <miguel.dedios@artica.es>

* include/functions_alerts.php: add more values into function
	"get_alert_template_threshold_values", values as 1 week, 2 weeks, 1 month
	and 6 months.
	* godmode/alerts/configure_alert_template.php: change the default value
	to 1 day.
	Fixes: 2902458



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2135 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2009-11-26 09:49:30 +00:00
parent 995266e73d
commit d3bad3b4db
3 changed files with 13 additions and 1 deletions

View File

@ -1,3 +1,12 @@
2009-11-26 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_alerts.php: add more values into function
"get_alert_template_threshold_values", values as 1 week, 2 weeks, 1 month
and 6 months.
* godmode/alerts/configure_alert_template.php: change the default value
to 1 day.
Fixes: 2902458
2009-11-25 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_ui.php: fix the bug in the pagination that write wrong

View File

@ -217,7 +217,7 @@ $field3 = '';
$priority = 1;
$min_alerts = 0;
$max_alerts = 1;
$threshold = 300;
$threshold = 86400;
$recovery_notify = false;
$field2_recovery = '';
$field3_recovery = '';

View File

@ -350,6 +350,9 @@ function get_alert_template_threshold_values () {
$times['43200'] = '12 '.__('hours');
$times['86400'] = '1 '.__('day');
$times['604800'] = '1 '.__('week');
$times['1209600'] = '2 '.__('weeks');
$times['18144000'] = '1 '.__('month');
$times['108864000'] = '6 '.__('months');
$times['-1'] = __('Other value');
return $times;