add checks for Messge Disposition Notifications.
[squirrelmail.git] / class / html.class.php
index 9a6bcdaa07e4af7d60079a0bb9060003200f1679..faa9b3c34fbc1c6f76106a3d97fa311c67e68397 100644 (file)
@@ -2,7 +2,7 @@
 /**
  * html.class.php
  *
- * Copyright (c) 2002 The SquirrelMail Project Team
+ * Copyright (c) 2003 The SquirrelMail Project Team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * This contains functions needed to generate html output.
@@ -10,7 +10,6 @@
  * $Id$
  */
 
-
 class html {
   var $tag, $text, $style, $class,  
       $id, $html_el = array(), $javascript, $xtr_prop;
@@ -30,7 +29,6 @@ class html {
      if ($last) {
         $this->html_el[] = $el;
      } else {
-        echo 'JOPPPEEE';
        $new_html_el = array();
        $new_html_el[] = $el;
        foreach ($this->html_el as $html_el) {
@@ -74,7 +72,7 @@ class html {
      $s = "\n".'<!--'."\n".
          $script .
          "\n".'// -->'."\n";
-     $el = new html ('script',$s,''.''.''.array('language' => 'JavaScript',
+     $el = new html ('script',$s,'','','',array('language' => 'JavaScript',
                                                 'type' => 'text/javascript'));
      $this->htmlAdd($el);
   }