summaryrefslogblamecommitdiffstats
path: root/application/controllers/IndexController.php
blob: d26f8d4b825e985bbc529d8de545e6099203c86f (plain) (tree)
1
2
3
4
5
6
7
8





                                                    

                                                         



                                 

                                                                
                                                                             
         

       









                      
<?php

class IndexController extends Zend_Controller_Action
{

    public function init()
    {    	
        /* Initialize action controller here */          
    }

    public function indexAction()
    {
    	if(stristr($_SERVER['HTTP_USER_AGENT'],'prebootGUI')){
			$_SESSION['postdata'] = $_POST;   	
			$this->_redirect('/fbgui/index/index');	             
        }
       

        // action body
    } 


}