Code

Updated registration process
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 10 Nov 2010 15:44:26 +0000 (15:44 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 10 Nov 2010 15:44:26 +0000 (15:44 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@20223 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/include/class_config.inc

index b872cb5d828d35449dbfec18597b26e4e55f14a0..ad4d2fc7cb21fb67596d168c141053d2477d548d 100644 (file)
@@ -65,7 +65,6 @@ class config  {
     var $last_modified = 0;
 
     var $instanceUUID = "";
-    var $instancePassword = "";
 
     private $jsonRPChandle = NULL; 
 
@@ -102,12 +101,6 @@ class config  {
     }    
 
 
-    function getInstancePassword()
-    {
-        return($this->instancePassword);
-    }    
-
-
     /*! \brief Check and reload the configuration
      * 
      * This function checks if the configuration has changed, since it was
@@ -195,9 +188,6 @@ class config  {
             if(isset($attrs['INSTANCEUUID'])){
                 $this->instanceUUID = $attrs['INSTANCEUUID'];
             }
-            if(isset($attrs['INSTANCEPASSWORD'])){
-                $this->instancePassword = $attrs['INSTANCEPASSWORD'];
-            }
         }
 
         /* Return if we're not in config section */