*** empty log message ***
[squirrelmail.git] / plugins / newmail / testsound.php
index e8d1dcb4d479929a886bdcfe89765e20f0e75fc8..0bcb4a7264e913d1c25c736dad85f3f96bf7729e 100644 (file)
@@ -13,6 +13,7 @@
 
    chdir ("../");
    require_once('../src/validate.php');
+   require_once('../functions/html.php');
    require_once("../src/load_prefs.php");
    if (!isset($sound)) {
     $sound = "Click.wav";
 
    displayHtmlHeader( _("Test Sound"), '', FALSE );
 
-   echo "<BODY bgcolor=\"$color[4]\" topmargin=0 leftmargin=0 rightmargin=0 marginwidth=0 marginheight=0>\n".
-        '<CENTER>'.
-        "<embed src=\"$sound\" hidden=true autostart=true>".
-        '<br>'.
-        '<b>' . _("Loading the sound...") . '</b><br><br>'.
-        '<form>'.
-        '<input type="button" name="close" value="  ' .
-        _("Close") .
-        '  " onClick="window.close()">'.
-        '</form>'.
-        '</CENTER>'.
-        '</BODY></HTML>';
+   echo "<body bgcolor=\"$color[4]\" topmargin=0 leftmargin=0 rightmargin=0 marginwidth=0 marginheight=0>\n".
+        html_tag( 'table',
+            html_tag( 'tr',
+                html_tag( 'td',
+                    "<embed src=\"$sound\" hidden=true autostart=true>".
+                    '<br>'.
+                    '<b>' . _("Loading the sound...") . '</b><br><br>'.
+                    '<form>'.
+                    '<input type="button" name="close" value="  ' .
+                    _("Close") .
+                    '  " onClick="window.close()">'.
+                    '</form>' ,
+                'center' )
+            ) ,
+        'center' ) .
+        '</body></html>';
 
 ?>