X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=functions%2Foptions.php;h=f70fbf66f252407031ad2425df289cb7f7dac337;hb=c4ea392c26d334e154510fb1d635252d5310e367;hp=5ae717a04fa6f4bf2236436f860442296aeb53e7;hpb=74e44765b890bdbcc616b0d0facd816f01f8ac9e;p=squirrelmail.git diff --git a/functions/options.php b/functions/options.php index 5ae717a0..f70fbf66 100644 --- a/functions/options.php +++ b/functions/options.php @@ -154,7 +154,7 @@ class SquirrelOption { function createHTMLWidget() { global $javascript_on; - // Use new value if available + // Use new value if available if (!empty($this->new_value)) { $tempValue = $this->value; $this->value = $this->new_value; @@ -197,7 +197,7 @@ class SquirrelOption { /* Add the "post script" for this option. */ $result .= $this->post_script; - + // put correct value back if need be if (!empty($this->new_value)) { $this->value = $tempValue; @@ -227,7 +227,7 @@ class SquirrelOption { } $result = "name\" value=\"" . - htmlspecialchars($this->value) . + htmlspecialchars($this->value) . "\" size=\"$width\" $this->script />$this->trailing_text\n"; return ($result); } @@ -239,7 +239,7 @@ class SquirrelOption { /* Add each possible value to the select list. */ foreach ($this->possible_values as $real_value => $disp_value) { /* Start the next new option string. */ - $new_option = '\n"; } /* And add the new option string to our select tag. */ $result .= $new_option; - } + } /* Close the select tag and return our happy result. */ $result .= "\n"; return ($result); @@ -322,11 +322,11 @@ class SquirrelOption { } function createWidget_Float() { - + global $javascript_on; // add onChange javascript handler to a regular string widget - // which will strip out all non-numeric (period also OK) chars + // which will strip out all non-numeric (period also OK) chars if ($javascript_on) return preg_replace('/\/>/', ' onChange="origVal=this.value; newVal=\'\'; ' . 'for (i=0;i=\'0\' ' @@ -340,11 +340,11 @@ class SquirrelOption { function createWidget_Boolean() { /* Do the whole current value thing. */ if ($this->value != SMPREF_NO) { - $yes_chk = ' checked=""'; + $yes_chk = ' checked="checked"'; $no_chk = ''; } else { $yes_chk = ''; - $no_chk = ' checked=""'; + $no_chk = ' checked="checked"'; } /* Build the yes choice. */ @@ -521,9 +521,9 @@ function print_option_groups($option_groups) { function OptionSubmit( $name ) { echo html_tag( 'tr', - html_tag( 'td', '    ', 'right', '', 'colspan="2"' ) + html_tag( 'td', '    ', 'right', '', 'colspan="2"' ) ) . "\n"; } // vim: et ts=4 -?> +?> \ No newline at end of file