summaryrefslogtreecommitdiffstats
path: root/application/modules/user/controllers/AuthController.php
diff options
context:
space:
mode:
authorBjörn Geiger2011-03-24 15:53:28 +0100
committerBjörn Geiger2011-03-24 15:53:28 +0100
commit582c214adec00e3e3e928dcffd90e9b68e9abe15 (patch)
tree4e404d539d28fb653232fdad447299904db64d6a /application/modules/user/controllers/AuthController.php
parentMembershipSelect nach Login (diff)
downloadpbs2-582c214adec00e3e3e928dcffd90e9b68e9abe15.tar.gz
pbs2-582c214adec00e3e3e928dcffd90e9b68e9abe15.tar.xz
pbs2-582c214adec00e3e3e928dcffd90e9b68e9abe15.zip
ausgewählte Mitgliedschaft kann nun geändert werden
Diffstat (limited to 'application/modules/user/controllers/AuthController.php')
-rw-r--r--application/modules/user/controllers/AuthController.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/application/modules/user/controllers/AuthController.php b/application/modules/user/controllers/AuthController.php
index df45b90..db47f44 100644
--- a/application/modules/user/controllers/AuthController.php
+++ b/application/modules/user/controllers/AuthController.php
@@ -15,7 +15,8 @@ class User_AuthController extends Zend_Controller_Action
public function indexAction()
{
-
+ $this->_helper-> viewRenderer-> setNoRender();
+ $this->_helper->redirector('login', 'auth');
}
public function loginAction()
@@ -72,6 +73,7 @@ class User_AuthController extends Zend_Controller_Action
$this->_helper-> viewRenderer-> setNoRender();
$auth = Zend_Auth::getInstance();
$auth->clearIdentity();
+ Zend_Session::namespaceUnset('userIDs');
$this->_helper->redirector('login', 'auth');
return;
}