From a0faffe16186c1c21d808313eb926429c8afa383 Mon Sep 17 00:00:00 2001 From: Luis Calvo Date: Thu, 16 May 2019 18:59:17 +0200 Subject: [PATCH] Form eHorus user login with title Former-commit-id: 7b55f446802bb9c24602d2e626789a3365599835 --- pandora_console/operation/users/user_edit.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pandora_console/operation/users/user_edit.php b/pandora_console/operation/users/user_edit.php index f82bea9a40..2cf575777d 100644 --- a/pandora_console/operation/users/user_edit.php +++ b/pandora_console/operation/users/user_edit.php @@ -629,6 +629,11 @@ if ($config['ehorus_enabled'] && $config['ehorus_user_login']) { $table_remote->style['name'] = 'font-weight: bold'; + // Title + $row = []; + $row['control'] = '

'.__('eHorus user configuration').':

'; + $table_remote->data['ehorus_user_login'] = $row; + // User. $row = []; $row['name'] = __('User'); @@ -654,8 +659,10 @@ if ($config['ehorus_enabled'] && $config['ehorus_user_login']) { $row['control'] .= ''; $table_remote->data['ehorus_test'] = $row; + echo '
'; html_print_table($table_remote); + echo '
'; }