summaryrefslogtreecommitdiffstats
path: root/application/Bootstrap.php
diff options
context:
space:
mode:
authorSimon2011-01-31 15:09:44 +0100
committerSimon2011-01-31 15:09:44 +0100
commit8e1302857fb4350bb68a7b334a183ba68c59e91c (patch)
treefc5bf3e8c958fb8c90e48182e57d10942db0d645 /application/Bootstrap.php
parentMerge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2 (diff)
downloadpbs2-8e1302857fb4350bb68a7b334a183ba68c59e91c.tar.gz
pbs2-8e1302857fb4350bb68a7b334a183ba68c59e91c.tar.xz
pbs2-8e1302857fb4350bb68a7b334a183ba68c59e91c.zip
Login funktioniert
Diffstat (limited to 'application/Bootstrap.php')
-rw-r--r--application/Bootstrap.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/application/Bootstrap.php b/application/Bootstrap.php
index 26169dd..6ac8a0e 100644
--- a/application/Bootstrap.php
+++ b/application/Bootstrap.php
@@ -3,5 +3,9 @@
class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{
+ protected function _initAuth(){
+ $auth = Zend_Auth::getInstance();
+ $auth->setStorage(new Zend_Auth_Storage_Session('auth'));
+ }
}