diff --git a/public_html/deployment/classes/project.class.php b/public_html/deployment/classes/project.class.php
index cd97e0520f483b1a236349ca225ae7d60c4d0e9d..5d7eb31193eb0f80d1b8080bc3b0d0c6ec49df1e 100644
--- a/public_html/deployment/classes/project.class.php
+++ b/public_html/deployment/classes/project.class.php
@@ -13,6 +13,8 @@ require_once 'messenger.class.php';
 require_once 'build_base.class.php';
 require_once 'rollout_base.class.php';
 
+require_once 'htmlguielements.class.php';
+
 /* ######################################################################
 
   IML DEPLOYMENT
@@ -123,6 +125,7 @@ class project extends base {
      */
     public function __construct($sId = false) {
         $this->oUser = new user();
+        $this->_oHtml = new htmlguielements();
         $this->_readConfig();
         if ($sId) {
             $this->setProjectById($sId);
diff --git a/public_html/deployment/classes/project_gui.class.php b/public_html/deployment/classes/project_gui.class.php
index 8f1badbb2f3ab943a8ceff3b686d2b468c8da8dc..20e4ac28ae992ca325a14c84848e87b6fa2ee386 100644
--- a/public_html/deployment/classes/project_gui.class.php
+++ b/public_html/deployment/classes/project_gui.class.php
@@ -24,11 +24,11 @@ class projectgui extends project {
     /**
      * constructor
      * @param string $sId  id of the project
-     */
     public function __construct($sId = false) {
         parent::__construct($sId);
         $this->_oHtml = new htmlguielements();
     }
+    */
 
     // ----------------------------------------------------------------------
     // private functions