XHTML fixes
authorjervfors <jervfors@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sun, 15 Aug 2004 02:03:39 +0000 (02:03 +0000)
committerjervfors <jervfors@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sun, 15 Aug 2004 02:03:39 +0000 (02:03 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@7903 7612ce4b-ef26-0410-bec9-ea0150e637f0

doc/plugin.txt
plugins/fortune/setup.php
plugins/newmail/newmail_opt.php
plugins/squirrelspell/modules/lang_setup.mod

index e2aca7b99736e4593abe28cb12419aa5670178f6..032c3e22c3e446d1732029df0dd77ba88b4b3b50 100644 (file)
@@ -404,7 +404,7 @@ options_identities_buttons
       function demo_identities_button(&$args)
       {
          return '<input type="submit" name="demo_button_' . $args[1]
-              . '" value="Press Me">';
+              . '" value="Press Me" />';
       }
 
 
index 9cecbf4493dbb5edda4bd16d2098f3ebb77d0152..ce5a284e5c311f89aeccdd5eca82062157b6af14 100644 (file)
@@ -73,9 +73,9 @@ function fortune_options() {
   global $fortune_visible;
 
   echo "<tr>" . html_tag('td',_("Fortunes:"),'right','','nowrap') . "\n";
-  echo '<td><input name="fortune_fortune_visible" type=CHECKBOX';
+  echo '<td><input name="fortune_fortune_visible" type="checkbox"';
   if ($fortune_visible)
-    echo ' CHECKED';
+    echo ' checked="checked"';
   echo " /> " . _("Show fortunes at top of mailbox") . "</td></tr>\n";
 }
 
index a097175105ab4c70169f0d544e6219c110d8456a..c0a3b2a6675b006298f2ec573a36335a4bcb0156 100644 (file)
@@ -156,7 +156,7 @@ if ($allowsound == "true") {
             html_tag( 'tr', "\n" .
                 html_tag( 'td', _("Current File:"), 'right', '', 'nowrap' ) .
                     html_tag( 'td', '<input type="hidden" value="' .
-                        htmlspecialchars($media) . '" name="media_default">' .
+                        htmlspecialchars($media) . '" name="media_default" />' .
                         htmlspecialchars($media_output) . '', 'left' )
              ) . "\n";
 }
index d19afba64f3c8f4fef631fa8454334ff4935a105..f1a1d8896499fc2df28fe0b1a2715ea18c8337dd 100644 (file)
@@ -35,12 +35,12 @@ while (list($avail_lang, $junk) = each($SQSPELL_APP)){
   $msg .= "<input type=\"checkbox\" name=\"use_langs[]\" "
     . "value=\"$avail_lang\"";
   if (in_array($avail_lang, $langs)) {
-    $msg .= ' checked';
+    $msg .= ' checked="checked"';
   }
   $msg .= ' /> ' . _($avail_lang) . "<br />\n";
   $add .= "<option";
   if ($avail_lang==$langs[0]) {
-    $add .= ' selected';
+    $add .= ' selected="selected"';
   }
   $add .= " value=\"$avail_lang\" >" . _($avail_lang) . "</option>\n";
 }