From 2c888f7fb31833da915495d16ed52439762d4ef0 Mon Sep 17 00:00:00 2001 From: zarzuelo Date: Wed, 29 Sep 2010 09:23:12 +0000 Subject: [PATCH] 2010-09-29 Sergio Martin * godmode/agentes/fields_manager.php: Fixed the custom fields section notice where is empty git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3310 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 +++++ pandora_console/godmode/agentes/fields_manager.php | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) 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 '
';