Add class attribute to template
[squirrelmail.git] / plugins / newmail / testsound.php
index cba784dcf5162319f166a2061ac2113cc32f274e..5de4d0b04d0be1edcc78064baaa64985f6038673 100644 (file)
@@ -3,19 +3,18 @@
 /**
  * testsound.php
  *
- * Copyright (c) 1999-2004 The SquirrelMail Project Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
- *
- * $Id$
+ * @copyright © 1999-2006 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @version $Id$
  * @package plugins
  * @subpackage newmail
  */
 
-/** @ignore */
-define('SM_PATH','../../');
-
-/* SquirrelMail required files. */
-require_once(SM_PATH . 'include/validate.php');
+/**
+ * Path for SquirrelMail required files.
+ * @ignore
+ */
+require('../../include/init.php');
 
 displayHtmlHeader( _("Test Sound"), '', FALSE );
 
@@ -24,10 +23,10 @@ echo '<body bgcolor="'.$color[4].'" topmargin="0" leftmargin="0" rightmargin="0"
 if ( ! sqgetGlobalVar('sound', $sound, SQ_GET) ) {
     $sound = 'Click.wav';
 } elseif ( $sound == '(none)' ) {
-    echo '<center><form><br /><br />'.
+    echo '<div style="text-align: center;"><form><br /><br />'.
          '<b>' . _("No sound specified") . '</b><br /><br />'.
          '<input type="button" name="close" value="' . _("Close") . '" onclick="window.close()" />'.
-         '</form></center>'.
+         '</form></div>'.
          '</body></html>';
     return;
 }
@@ -35,7 +34,7 @@ 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".
+                    newmail_create_media_tags($sound)."\n".
                     '<br />'.
                     '<b>' . _("Loading the sound...") . '</b><br />'.
                     '<form>'.