From 1182eef65252ddb54f58531f26b4f9cb7c37f66e Mon Sep 17 00:00:00 2001 From: koichirok Date: Tue, 23 Aug 2011 08:49:59 +0000 Subject: [PATCH] 2011-08-23 KIKUCHI Koichiro * operation/agentes/exportdata.php: Fixed format character for default start_time and end_time. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4803 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 +++++ pandora_console/operation/agentes/exportdata.php | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 4434bbba1f..7d844c24d5 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2011-08-23 KIKUCHI Koichiro + + * operation/agentes/exportdata.php: Fixed format character for default + start_time and end_time. + 2011-08-23 Junichi Satoh * include/functions_modules.php: Added comment for the 5th argument diff --git a/pandora_console/operation/agentes/exportdata.php b/pandora_console/operation/agentes/exportdata.php index 8a63451b82..6f6dff346c 100644 --- a/pandora_console/operation/agentes/exportdata.php +++ b/pandora_console/operation/agentes/exportdata.php @@ -351,13 +351,13 @@ $table->data[3][0] = ''.__('Begin date').''; $table->data[3][1] = html_print_input_text ('start_date', date ("Y-m-d", get_system_time () - 86400), false, 10, 10, true); $table->data[3][1] .= html_print_image ("images/calendar_view_day.png", true, array ("alt" => "calendar", "onclick" => "scwShow(scwID('text-start_date'),this);")); -$table->data[3][1] .= html_print_input_text ('start_time', date ("H:m", get_system_time () - 86400), false, 10, 5, true); +$table->data[3][1] .= html_print_input_text ('start_time', date ("H:i", get_system_time () - 86400), false, 10, 5, true); //End date selector $table->data[4][0] = ''.__('End date').''; $table->data[4][1] = html_print_input_text ('end_date', date ("Y-m-d", get_system_time ()), false, 10, 10, true); $table->data[4][1] .= html_print_image ("images/calendar_view_day.png", true, array ("alt" => "calendar", "onclick" => "scwShow(scwID('text-end_date'),this);")); -$table->data[4][1] .= html_print_input_text ('end_time', date ("H:m", get_system_time ()), false, 10, 5, true); +$table->data[4][1] .= html_print_input_text ('end_time', date ("H:i", get_system_time ()), false, 10, 5, true); //Export type $table->data[5][0] = ''.__('Export type').'';