2010-04-09 Sergio Martin <sergio.martin@artica.es>
* godmode/alerts/configure_alert_template.php: Typo fix for bug 2981933 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2554 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
4583bb9ffe
commit
dbdf2cc7b0
|
@ -1,3 +1,8 @@
|
||||||
|
2010-04-09 Sergio Martin <sergio.martin@artica.es>
|
||||||
|
|
||||||
|
* godmode/alerts/configure_alert_template.php: Typo fix for bug
|
||||||
|
2981933
|
||||||
|
|
||||||
2010-04-09 Junichi Satoh <junichi@rworks.jp>
|
2010-04-09 Junichi Satoh <junichi@rworks.jp>
|
||||||
|
|
||||||
* include/functions_extensions.php: Changed the function to use,
|
* include/functions_extensions.php: Changed the function to use,
|
||||||
|
|
|
@ -143,9 +143,9 @@ function update_template ($step) {
|
||||||
$saturday = (bool) get_parameter ('saturday');
|
$saturday = (bool) get_parameter ('saturday');
|
||||||
$sunday = (bool) get_parameter ('sunday');
|
$sunday = (bool) get_parameter ('sunday');
|
||||||
$time_from = (string) get_parameter ('time_from');
|
$time_from = (string) get_parameter ('time_from');
|
||||||
$time_from = date ("H:s:00", strtotime ($time_from));
|
$time_from = date ("H:i:00", strtotime ($time_from));
|
||||||
$time_to = (string) get_parameter ('time_to');
|
$time_to = (string) get_parameter ('time_to');
|
||||||
$time_to = date ("H:s:00", strtotime ($time_to));
|
$time_to = date ("H:i:00", strtotime ($time_to));
|
||||||
$threshold = (int) get_parameter ('threshold');
|
$threshold = (int) get_parameter ('threshold');
|
||||||
$max_alerts = (int) get_parameter ('max_alerts');
|
$max_alerts = (int) get_parameter ('max_alerts');
|
||||||
$min_alerts = (int) get_parameter ('min_alerts');
|
$min_alerts = (int) get_parameter ('min_alerts');
|
||||||
|
|
Loading…
Reference in New Issue