summaryrefslogtreecommitdiffstats
path: root/application/controllers
diff options
context:
space:
mode:
authormichael pereira2011-03-18 19:27:33 +0100
committermichael pereira2011-03-18 19:27:33 +0100
commit87b3b1d9c0cecf76d1eb39cf2548072607de59ea (patch)
tree5d07af0d68e20a38422a72864b3ca68b1a1b07be /application/controllers
parentBootOs Update implementiert, BootISO anlegen und some fixes (diff)
parentUser-Oberfläche, FBGui-Oberfläche legt Session&Clients an - für Kiosk-System (diff)
downloadpbs2-87b3b1d9c0cecf76d1eb39cf2548072607de59ea.tar.gz
pbs2-87b3b1d9c0cecf76d1eb39cf2548072607de59ea.tar.xz
pbs2-87b3b1d9c0cecf76d1eb39cf2548072607de59ea.zip
newsql geaendert
Diffstat (limited to 'application/controllers')
-rw-r--r--application/controllers/IndexController.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/application/controllers/IndexController.php b/application/controllers/IndexController.php
index df2f91c..9a65853 100644
--- a/application/controllers/IndexController.php
+++ b/application/controllers/IndexController.php
@@ -6,6 +6,17 @@ 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
+ )
+ );
+
+ }
}
public function indexAction()