2011-08-23 KIKUCHI Koichiro <koichiro@rworks.jp>
* 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
This commit is contained in:
parent
fb89e4c74a
commit
e8b2b553aa
|
@ -1,3 +1,8 @@
|
|||
2011-08-23 KIKUCHI Koichiro <koichiro@rworks.jp>
|
||||
|
||||
* operation/agentes/exportdata.php: Fixed format character for default
|
||||
start_time and end_time.
|
||||
|
||||
2011-08-23 Junichi Satoh <junichi@rworks.jp>
|
||||
|
||||
* include/functions_modules.php: Added comment for the 5th argument
|
||||
|
|
|
@ -351,13 +351,13 @@ $table->data[3][0] = '<b>'.__('Begin date').'</b>';
|
|||
|
||||
$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] = '<b>'.__('End date').'</b>';
|
||||
$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] = '<b>'.__('Export type').'</b>';
|
||||
|
|
Loading…
Reference in New Issue