summaryrefslogtreecommitdiffstats
path: root/application/controllers/IndexController.php
diff options
context:
space:
mode:
authorSimon2011-04-14 16:37:26 +0200
committerSimon2011-04-14 16:37:26 +0200
commite46ce086cb84a7f2787c07a6379c052bd4a435d9 (patch)
tree696df104b0c39c31e879c855f9c1387d99860553 /application/controllers/IndexController.php
parentfix (diff)
downloadpbs2-e46ce086cb84a7f2787c07a6379c052bd4a435d9.tar.gz
pbs2-e46ce086cb84a7f2787c07a6379c052bd4a435d9.tar.xz
pbs2-e46ce086cb84a7f2787c07a6379c052bd4a435d9.zip
fbgui debug fix
Diffstat (limited to 'application/controllers/IndexController.php')
-rw-r--r--application/controllers/IndexController.php7
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();