diff options
Diffstat (limited to 'application/controllers/IndexController.php')
| -rw-r--r-- | application/controllers/IndexController.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/application/controllers/IndexController.php b/application/controllers/IndexController.php index 3818132..00ddc12 100644 --- a/application/controllers/IndexController.php +++ b/application/controllers/IndexController.php @@ -11,8 +11,11 @@ class IndexController extends Zend_Controller_Action public function indexAction() { if(stristr($_SERVER['HTTP_USER_AGENT'],'prebootGUI')){ - if(!isset($_SESSION['postdata'])){ - $_SESSION['postdata'] = $_POST; + $mySession =new Zend_Session_Namespace('pbs'); + print_a($mySession); + if(!isset($_SESSION['postdata'])){ + $mySession->postdata = $_POST; + print_a($mySession); } $d = new Pbs_Debug(); |
