X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=functions%2Foptions.php;h=de63a8f4a5798bcaa73cc93ee3088f069af86ec3;hb=fd28fa79b1ccbcc961472de73c39c66036baccdd;hp=a63e19ceff7a70956f2c650fd040eeb087c3bec3;hpb=1aefbee03b9dbea57a7f1ca461b3f718867ccebf;p=squirrelmail.git diff --git a/functions/options.php b/functions/options.php index a63e19ce..de63a8f4 100644 --- a/functions/options.php +++ b/functions/options.php @@ -3,12 +3,12 @@ /** * options.php * - * Copyright (c) 1999-2003 The SquirrelMail Project Team + * Copyright (c) 1999-2004 The SquirrelMail Project Team * Licensed under the GNU GPL. For full terms see the file COPYING. * * 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'] : '') ); }