From 2298019e6ba8f8feb9846617c14386faf8cf47c4 Mon Sep 17 00:00:00 2001 From: Tatiana Llorente Date: Wed, 3 Jul 2019 12:41:22 +0200 Subject: [PATCH] Dont show empty custom fields in agent view - #4201 --- .../agentes/estado_generalagente.php | 31 +++++++++---------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/pandora_console/operation/agentes/estado_generalagente.php b/pandora_console/operation/agentes/estado_generalagente.php index 88b1d1a247..24aa44e098 100755 --- a/pandora_console/operation/agentes/estado_generalagente.php +++ b/pandora_console/operation/agentes/estado_generalagente.php @@ -461,26 +461,25 @@ if ($fields === false) { $custom_fields = []; foreach ($fields as $field) { - $data = []; - $data[0] = ''.$field['name'].ui_print_help_tip(__('Custom field'), true).''; - $custom_value = db_get_all_rows_sql( - 'select tagent_custom_data.description,tagent_custom_fields.is_password_type from tagent_custom_fields - INNER JOIN tagent_custom_data ON tagent_custom_fields.id_field = tagent_custom_data.id_field where tagent_custom_fields.id_field = '.$field['id_field'].' and tagent_custom_data.id_agent = '.$id_agente - ); + $custom_value = db_get_all_rows_sql( + 'select tagent_custom_data.description,tagent_custom_fields.is_password_type from tagent_custom_fields + INNER JOIN tagent_custom_data ON tagent_custom_fields.id_field = tagent_custom_data.id_field where tagent_custom_fields.id_field = '.$field['id_field'].' and tagent_custom_data.id_agent = '.$id_agente + ); - if ($custom_value[0]['description'] === false || $custom_value[0]['description'] == '') { - $custom_value[0]['description'] = '-'.__('empty').'-'; - } else { + if ($custom_value[0]['description'] !== false && $custom_value[0]['description'] != '') { + $data = []; + + $data[0] = ''.$field['name'].ui_print_help_tip(__('Custom field'), true).''; $custom_value[0]['description'] = ui_bbcode_to_html($custom_value[0]['description']); - } - if ($custom_value[0]['is_password_type']) { - $data[1] = '••••••••'; - } else { - $data[1] = $custom_value[0]['description']; - } + if ($custom_value[0]['is_password_type']) { + $data[1] = '••••••••'; + } else { + $data[1] = $custom_value[0]['description']; + } - $custom_fields[] = $data; + $custom_fields[] = $data; + } } $custom_fields_count = count($custom_fields);