blob: 6ac8a0e22e92b7fe7e070b3b82bbf5f67ee18a00 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{
protected function _initAuth(){
$auth = Zend_Auth::getInstance();
$auth->setStorage(new Zend_Auth_Storage_Session('auth'));
}
}
|