XHTML fixes
[squirrelmail.git] / plugins / newmail / testsound.php
index 16d53892f4df7cf5480be05de14abc5e8046d53c..711036da62bd0190703d936143dcaa1be0fc2b81 100644 (file)
@@ -21,14 +21,14 @@ require_once(SM_PATH . 'functions/html.php');
 
 displayHtmlHeader( _("Test Sound"), '', FALSE );
 
-echo '<body bgcolor="'.$color[4].'" topmargin=0 leftmargin=0 rightmargin=0 marginwidth=0 marginheight=0>'."\n";
+echo '<body bgcolor="'.$color[4].'" topmargin="0" leftmargin="0" rightmargin="0" marginwidth="0" marginheight="0">'."\n";
 
 if ( ! sqgetGlobalVar('sound', $sound, SQ_GET) ) {
     $sound = 'Click.wav';
 } elseif ( $sound == '(none)' ) {
     echo '<center><form><br /><br />'.
          '<b>' . _("No sound specified") . '</b><br /><br />'.
-         '<input type="button" name="close" value="' . _("Close") . '" onClick="window.close()">'.
+         '<input type="button" name="close" value="' . _("Close") . '" onClick="window.close()" />'.
          '</form></center>'.
          '</body></html>';
     return;
@@ -37,13 +37,13 @@ if ( ! sqgetGlobalVar('sound', $sound, SQ_GET) ) {
 echo html_tag( 'table',
          html_tag( 'tr',
              html_tag( 'td',
-                    '<embed src="'.htmlspecialchars($sound)."\" hidden=\"true\" autostart=\"true\">\n".
-                    '<br>'.
-                    '<b>' . _("Loading the sound...") . '</b><br>'.
+                    '<embed src="'.htmlspecialchars($sound).'" hidden="true" autostart="true">'."\n".
+                    '<br />'.
+                    '<b>' . _("Loading the sound...") . '</b><br />'.
                     '<form>'.
                     '<input type="button" name="close" value="  ' .
                     _("Close") .
-                    '  " onClick="window.close()">'.
+                    '  " onClick="window.close()" />'.
                     '</form>' ,
                 'center' )
             ) ,