summaryrefslogblamecommitdiffstats
path: root/application/controllers/IndexController.php
blob: cf6673ce059a3a697dcd3e81bb086e8bc4b89362 (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

       
    }

	
}