summaryrefslogtreecommitdiffstats
path: root/application/controllers/PersonController.php
diff options
context:
space:
mode:
authorBjörn Geiger2011-08-05 10:49:07 +0200
committerBjörn Geiger2011-08-05 10:49:07 +0200
commit881606490beb83326cbf49940c002d88cff85a77 (patch)
treec85e1745db8d576a27d9050e8ee0aecfa2d9f40d /application/controllers/PersonController.php
parentminor (diff)
downloadpoolctrl-881606490beb83326cbf49940c002d88cff85a77.tar.gz
poolctrl-881606490beb83326cbf49940c002d88cff85a77.tar.xz
poolctrl-881606490beb83326cbf49940c002d88cff85a77.zip
Fehler korrigiert
Diffstat (limited to 'application/controllers/PersonController.php')
-rw-r--r--application/controllers/PersonController.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/application/controllers/PersonController.php b/application/controllers/PersonController.php
index 30bada3..f701a8e 100644
--- a/application/controllers/PersonController.php
+++ b/application/controllers/PersonController.php
@@ -17,10 +17,14 @@ class PersonController extends Zend_Controller_Action
protected $currentMembership = null;
protected $memberships = null;
protected $userIDsNamespace = null;
+ protected $config;
+ protected $pbs2host;
public function init()
{
if (Zend_Auth::getInstance()->hasIdentity()) {
+ $this->config = $bootstrap->getOptions();
+ $this->pbs2host = $this->config['pbs2']['host'];
$this->userIDsNamespace = Zend_Session::namespaceGet('userIDs');
if(is_array($this->userIDsNamespace)) {
$membershipID = $this->userIDsNamespace['membershipID'];