From: hickert Date: Wed, 10 Nov 2010 06:51:48 +0000 (+0000) Subject: Updated gosa.conf to read 'instancePassword' from the gosa.conf X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=340bba697fb0bab62187471a2199d4220369ec8d;p=gosa.git Updated gosa.conf to read 'instancePassword' from the gosa.conf git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@20211 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/include/class_config.inc b/gosa-core/include/class_config.inc index ad4d2fc7c..5df8c8ef8 100644 --- a/gosa-core/include/class_config.inc +++ b/gosa-core/include/class_config.inc @@ -65,6 +65,7 @@ class config { var $last_modified = 0; var $instanceUUID = ""; + var $instancePassword = ""; private $jsonRPChandle = NULL; @@ -188,6 +189,9 @@ 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 */