Skip to content

Commit

Permalink
Update maxlenght to password field in use detail editor, tiquet: #2098
Browse files Browse the repository at this point in the history
  • Loading branch information
m-lopez-f committed Apr 14, 2015
1 parent 5533100 commit 21f04e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pandora_console/operation/users/user_edit.php
Expand Up @@ -231,9 +231,9 @@
if ($config["user_can_update_password"]) {
$data = array();
$data[0] = __('New Password');
$data[0] .= $jump . html_print_input_text_extended ("password_new", "", '', '', '40', '25', $view_mode, '', 'class="input"', true, true);
$data[0] .= $jump . html_print_input_text_extended ("password_new", "", '', '', '40', '45', $view_mode, '', 'class="input"', true, true);
$data[1] = __('Password confirmation');
$data[1] .= $jump . html_print_input_text_extended ("password_conf", "", '', '', '40', '25', $view_mode, '', 'class="input"', true, true);
$data[1] .= $jump . 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;
Expand Down

0 comments on commit 21f04e6

Please sign in to comment.