diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index a651e8e96f..dbf1d10bf6 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2010-09-29 Sergio Martin + + * godmode/agentes/fields_manager.php: Fixed the custom fields + section notice where is empty + 2010-09-28 Sergio Martin * include/functions_html.php: Added style parameter to the diff --git a/pandora_console/godmode/agentes/fields_manager.php b/pandora_console/godmode/agentes/fields_manager.php index be4eff1484..8329ad560f 100644 --- a/pandora_console/godmode/agentes/fields_manager.php +++ b/pandora_console/godmode/agentes/fields_manager.php @@ -87,8 +87,8 @@ if ($delete_field) { $fields = get_db_all_fields_in_table('tagent_custom_fields'); -if ($fields) { $table->width = '65%'; +if ($fields) { $table->head = array (); $table->head[0] = __('Field'); $table->head[1] = __('Display on front').print_help_tip (__('The fields with display on front enabled will be displayed into the agent details'), true); @@ -119,7 +119,8 @@ foreach ($fields as $field) { array_push ($table->data, $data); } -print_table ($table); +if($fields) + print_table ($table); echo '
'; echo '
';