Code syncronized with shipsimu code base
[mailer.git] / inc / classes / main / output / class_WebOutput.php
index 5b4f58838d6f9f1b842ee71e00e9fb59c8738341..7a508058ddd1cc90acd210e9b8f0f82b80cbf612 100644 (file)
@@ -5,7 +5,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright(c) 2007, 2008 Roland Haeder, this is free software
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, this is free software
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -36,12 +36,6 @@ class WebOutput extends BaseFrameworkSystem implements OutputStreamer, Registera
        protected function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
-
-               // Set description
-               $this->setObjectDescription("Class for web output e.g. XHTML code");
-
-               // Create an unique ID
-               $this->generateUniqueId();
        }
 
        /**
@@ -90,7 +84,7 @@ class WebOutput extends BaseFrameworkSystem implements OutputStreamer, Registera
         * @return      void
         */
        public final function output ($outStream=false) {
-               print $outStream;
+               print($outStream);
        }
 }