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:
zarzuelo 2010-04-09 17:04:39 +00:00
parent 4583bb9ffe
commit dbdf2cc7b0
2 changed files with 7 additions and 2 deletions

View File

@ -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>
* include/functions_extensions.php: Changed the function to use,

View File

@ -143,9 +143,9 @@ function update_template ($step) {
$saturday = (bool) get_parameter ('saturday');
$sunday = (bool) get_parameter ('sunday');
$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 = date ("H:s:00", strtotime ($time_to));
$time_to = date ("H:i:00", strtotime ($time_to));
$threshold = (int) get_parameter ('threshold');
$max_alerts = (int) get_parameter ('max_alerts');
$min_alerts = (int) get_parameter ('min_alerts');