summaryrefslogtreecommitdiffstats
path: root/application/controllers
diff options
context:
space:
mode:
authorSimon2011-03-21 14:07:06 +0100
committerSimon2011-03-21 14:07:06 +0100
commit15437db2980b0ab7782fe1dab261aa75b6b0b410 (patch)
treeba626719c49ae732127ada0f44ec2c22c253d3c7 /application/controllers
parentmerge (diff)
downloadpbs2-15437db2980b0ab7782fe1dab261aa75b6b0b410.tar.gz
pbs2-15437db2980b0ab7782fe1dab261aa75b6b0b410.tar.xz
pbs2-15437db2980b0ab7782fe1dab261aa75b6b0b410.zip
Filter angepasst, wenn keine Mitgliedschaft besteht
fbgui als beispiel mit bootmenu ausgestattet
Diffstat (limited to 'application/controllers')
-rw-r--r--application/controllers/IndexController.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/application/controllers/IndexController.php b/application/controllers/IndexController.php
index 5f61df4..f3e5256 100644
--- a/application/controllers/IndexController.php
+++ b/application/controllers/IndexController.php
@@ -10,10 +10,12 @@ class IndexController extends Zend_Controller_Action
public function indexAction()
{
- print_a($_SERVER);
- if(stristr($_SERVER['HTTP_USER_AGENT'],'prebootGUI')){
- $this->_forward('index','Index','fbgui');
+ if(stristr($_SERVER['HTTP_USER_AGENT'],'prebootGUI')){
+ $_SESSION['postdata'] = $_POST;
+ $this->_redirect('/fbgui/index/index') ;
}
+
+
// action body
}