diff options
| author | Simon | 2011-03-19 12:26:53 +0100 |
|---|---|---|
| committer | Simon | 2011-03-19 12:26:53 +0100 |
| commit | 608133e70c3acdc11850f7096a56056ae1b33b31 (patch) | |
| tree | 3267693240f400dede4952641ae9532ca4ac9d58 /application/controllers/IndexController.php | |
| parent | Bei Auth Controller zum testen MembershipID wählbar (diff) | |
| download | pbs2-608133e70c3acdc11850f7096a56056ae1b33b31.tar.gz pbs2-608133e70c3acdc11850f7096a56056ae1b33b31.tar.xz pbs2-608133e70c3acdc11850f7096a56056ae1b33b31.zip | |
Filter korrigiert
Zeitzone eingestellt
fbgui oberfläche angepasst
Diffstat (limited to 'application/controllers/IndexController.php')
| -rw-r--r-- | application/controllers/IndexController.php | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/application/controllers/IndexController.php b/application/controllers/IndexController.php index 9a65853..2972e9e 100644 --- a/application/controllers/IndexController.php +++ b/application/controllers/IndexController.php @@ -4,23 +4,15 @@ class IndexController extends Zend_Controller_Action { public function init() - { - /* Initialize action controller here */ - if(stristr($_SERVER['HTTP_USER_AGENT'],'prebootGUI')){ - $redirector = $this->_helper->getHelper('Redirector'); - $redirector->gotoSimple('index', - 'Index', - 'fbgui', - array('keys' => array_keys($_POST), - 'post' => $_POST - ) - ); - - } + { + /* Initialize action controller here */ } public function indexAction() { + if(stristr($_SERVER['HTTP_USER_AGENT'],'prebootGUI')){ + $this->_forward('index','Index','fbgui'); + } // action body } |
