2010-07-28 Miguel de Dios <miguel.dedios@artica.es>

* godmode/reporting/visual_console_builder.data.php: fixed the select box
	field for to don't show None value for map background.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3073 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2010-07-28 09:26:21 +00:00
parent d5795cf73c
commit 16a7223800
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2010-07-28 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/visual_console_builder.data.php: fixed the select box
field for to don't show None value for map background.
2010-07-27 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_reporting.php: added new parameters in the function
"get_agentmodule_sla", the parameters days of week to search and range of

View File

@ -52,7 +52,7 @@ $table->data[1][1] = print_select_groups($config['id_user'], "AR", true, 'id_gro
$backgrounds_list = list_files ('images/console/background/', "jpg", 1, 0);
$backgrounds_list = array_merge ($backgrounds_list, list_files ('images/console/background/', "png", 1, 0));
$table->data[2][0] = __('Background');
$table->data[2][1] = print_select ($backgrounds_list, 'background', $background, '', 'None', '', true);
$table->data[2][1] = print_select ($backgrounds_list, 'background', $background, '', '', 0, true);
if ($action == 'new') {
$textButtonSubmit = __('Save');
$classButtonSubmit = 'sub wand';