2010-12-21 Miguel de Dios <miguel.dedios@artica.es>
* operation/agentes/exportdata.php: fixed the quotes in the script to show the calendar. Fixes: #3141353 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3676 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
7297961b5b
commit
5d3df0c12a
|
@ -1,3 +1,10 @@
|
|||
2010-12-21 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* operation/agentes/exportdata.php: fixed the quotes in the script to
|
||||
show the calendar.
|
||||
|
||||
Fixes: #3141353
|
||||
|
||||
2010-12-21 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* images/image_problem.opaque.png: re-upload the lost file in previous
|
||||
|
|
|
@ -319,13 +319,13 @@ $table->data[2][1] = print_select ($modules, "module_arr[]", array_keys ($module
|
|||
$table->data[3][0] = '<b>'.__('Begin date').'</b>';
|
||||
|
||||
$table->data[3][1] = print_input_text ('start_date', date ("Y-m-d", get_system_time () - 86400), false, 10, 10, true);
|
||||
$table->data[3][1] .= print_image ("images/calendar_view_day.png", true, array ("alt" => "calendar", "onclick" => 'scwShow(scwID("text-start_date"),this);'));
|
||||
$table->data[3][1] .= print_image ("images/calendar_view_day.png", true, array ("alt" => "calendar", "onclick" => "scwShow(scwID('text-start_date'),this);"));
|
||||
$table->data[3][1] .= print_input_text ('start_time', date ("H:m", get_system_time () - 86400), false, 10, 5, true);
|
||||
|
||||
//End date selector
|
||||
$table->data[4][0] = '<b>'.__('End date').'</b>';
|
||||
$table->data[4][1] = print_input_text ('end_date', date ("Y-m-d", get_system_time ()), false, 10, 10, true);
|
||||
$table->data[4][1] .= print_image ("images/calendar_view_day.png", true, array ("alt" => "calendar", "onclick" => 'scwShow(scwID("text-end_date"),this);'));
|
||||
$table->data[4][1] .= print_image ("images/calendar_view_day.png", true, array ("alt" => "calendar", "onclick" => "scwShow(scwID('text-end_date'),this);"));
|
||||
$table->data[4][1] .= print_input_text ('end_time', date ("H:m", get_system_time ()), false, 10, 5, true);
|
||||
|
||||
//Export type
|
||||
|
|
Loading…
Reference in New Issue