diff options
| author | Simon | 2011-03-22 11:48:48 +0100 |
|---|---|---|
| committer | Simon | 2011-03-22 11:48:48 +0100 |
| commit | 7346511014f3cf5250d81dcd18c66149f2fbaa59 (patch) | |
| tree | a679c3aa01e6567125683a0e34c778d862e8712c /application/modules/fbgui/controllers | |
| parent | quickfix v2 (diff) | |
| download | pbs2-7346511014f3cf5250d81dcd18c66149f2fbaa59.tar.gz pbs2-7346511014f3cf5250d81dcd18c66149f2fbaa59.tar.xz pbs2-7346511014f3cf5250d81dcd18c66149f2fbaa59.zip | |
FBGui nutzt nun Session bzw Cookies
Diffstat (limited to 'application/modules/fbgui/controllers')
| -rw-r--r-- | application/modules/fbgui/controllers/IndexController.php | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/application/modules/fbgui/controllers/IndexController.php b/application/modules/fbgui/controllers/IndexController.php index c4f531f..f2b7f7e 100644 --- a/application/modules/fbgui/controllers/IndexController.php +++ b/application/modules/fbgui/controllers/IndexController.php @@ -15,15 +15,7 @@ class Fbgui_IndexController extends Zend_Controller_Action if(isset($_SESSION['postdata'])){ $_POST = ($_SESSION['postdata']); unset($_SESSION['postdata']); - } - elseif($params != ''){ - print_a(json_decode($this->_request->getParam('postdata'))); - $data = array(); - $data = json_decode($this->_request->getParam('postdata')); - $_POST['bootisoID'] = $data->bootisoID; - $_POST['mac'] = $data->mac; - $_POST['hardwarehash'] = $data->hardwarehash; - } + } if(isset($_POST['bootisoID']) || isset($_POST['serialnumber'])){ // Create a session |
