X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=functions%2Foptions.php;h=de63a8f4a5798bcaa73cc93ee3088f069af86ec3;hb=fd28fa79b1ccbcc961472de73c39c66036baccdd;hp=37c6dda6dd02f71199da1ad0b022f3cf7d91d89b;hpb=82d304a0501324b276cabab1870755d5352bd21c;p=squirrelmail.git diff --git a/functions/options.php b/functions/options.php index 37c6dda6..de63a8f4 100644 --- a/functions/options.php +++ b/functions/options.php @@ -8,7 +8,7 @@ * * Functions needed to display the options pages. * - * $Id$ + * @version $Id$ * @package squirrelmail */ @@ -223,7 +223,7 @@ class SquirrelOption { /* If this value is the current value, select it. */ if ($real_value == $this->value) { - $new_option .= ' selected'; + $new_option .= ' selected=""'; } /* Add the display value to our option string. */ @@ -318,22 +318,24 @@ class SquirrelOption { function createWidget_Boolean() { /* Do the whole current value thing. */ if ($this->value != SMPREF_NO) { - $yes_chk = ' checked'; + $yes_chk = ' checked=""'; $no_chk = ''; } else { $yes_chk = ''; - $no_chk = ' checked'; + $no_chk = ' checked=""'; } /* Build the yes choice. */ - $yes_option = 'script> " - . _("Yes"); + $yes_option = 'script . '> ' + . ''; /* Build the no choice. */ - $no_option = 'script> " - . _("No"); + $no_option = 'script . '> ' + . ''; /* Build and return the combined "boolean widget". */ $result = "$yes_option    $no_option"; @@ -409,7 +411,7 @@ function create_option_groups($optgrps, $optvals) { $optset['name'], $optset['caption'], $optset['type'], - $optset['refresh'], + (isset($optset['refresh']) ? $optset['refresh'] : SMOPT_REFRESH_NONE), (isset($optset['initial_value']) ? $optset['initial_value'] : ''), $optset['posvals'] ); @@ -419,7 +421,7 @@ function create_option_groups($optgrps, $optvals) { $optset['name'], $optset['caption'], $optset['type'], - $optset['refresh'], + (isset($optset['refresh']) ? $optset['refresh'] : SMOPT_REFRESH_NONE), (isset($optset['initial_value']) ? $optset['initial_value'] : '') ); }