diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index bb6a785812..111b7af918 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -2738,8 +2738,8 @@ function html_print_input_text_extended( if ($hide_div_eye !== false) { echo ""; @@ -2756,9 +2756,11 @@ function html_print_input_text_extended( ]; foreach ($attrs as $attribute => $default) { - if (array_key_exists($attribute, $attributes)) { + if (array_key_exists($attribute, $attributes) + || ($password === true && $attribute === 'value') + ) { continue; - } //end if + } /* * Remember, this next code have a $$ that for example there is a var as @@ -2768,7 +2770,7 @@ function html_print_input_text_extended( * */ - // Exact operator because we want to show "0" on the value + // Exact operator because we want to show "0" on the value. if ($attribute !== '') { $output .= $attribute.'="'.$$attribute.'" '; } else if ($default != '') { @@ -2799,6 +2801,12 @@ function html_print_input_text_extended( ], true ); + + echo "'; } if (!$return) { diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index 8a361b187b..b51e2680a2 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -12116,6 +12116,10 @@ div.relative > div > div#ui-datepicker-div { width: 400px; } +.container-div-input-password { + display: block !important; +} + #message_dialog_connection { height: auto !important; }