From 25a68b23ed715f3846e4da5005cf53c1863dc3d2 Mon Sep 17 00:00:00 2001 From: m-lopez-f Date: Tue, 14 Apr 2015 18:21:52 +0200 Subject: [PATCH] Update maxlenght to password field in use detail editor, tiquet: #2098 --- pandora_console/operation/users/user_edit.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/operation/users/user_edit.php b/pandora_console/operation/users/user_edit.php index 03a03fa582..bc5ff394c4 100644 --- a/pandora_console/operation/users/user_edit.php +++ b/pandora_console/operation/users/user_edit.php @@ -222,9 +222,9 @@ if ($view_mode === false) { if ($config["user_can_update_password"]) { $data = array(); $data[0] = __('New Password'); - $data[0] .= '
' . html_print_input_text_extended ("password_new", "", '', '', '40', '25', $view_mode, '', 'class="input"', true, true); + $data[0] .= '
' . html_print_input_text_extended ("password_new", "", '', '', '40', '45', $view_mode, '', 'class="input"', true, true); $data[1] = __('Password confirmation'); - $data[1] .= '
' . html_print_input_text_extended ("password_conf", "", '', '', '40', '25', $view_mode, '', 'class="input"', true, true); + $data[1] .= '
' . html_print_input_text_extended ("password_conf", "", '', '', '40', '45', $view_mode, '', 'class="input"', true, true); $table->rowclass[] = ''; $table->rowstyle[] = 'font-weight: bold;'; $table->data[] = $data;