diff options
| author | michael pereira | 2011-03-16 10:05:20 +0100 |
|---|---|---|
| committer | michael pereira | 2011-03-16 10:05:20 +0100 |
| commit | ef1f634b2ec92107137c54e3af32de01135f02c9 (patch) | |
| tree | 60a5523e14bf7c5831c419f9fc2bf667ebcf06ed /application/modules/dev/controllers/SessionController.php | |
| parent | Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2 (diff) | |
| download | pbs2-ef1f634b2ec92107137c54e3af32de01135f02c9.tar.gz pbs2-ef1f634b2ec92107137c54e3af32de01135f02c9.tar.xz pbs2-ef1f634b2ec92107137c54e3af32de01135f02c9.zip | |
Ressource Controller setzt jetzt die Session fuer ausgewaehltes Bootmenuentry
Diffstat (limited to 'application/modules/dev/controllers/SessionController.php')
| -rw-r--r-- | application/modules/dev/controllers/SessionController.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/application/modules/dev/controllers/SessionController.php b/application/modules/dev/controllers/SessionController.php index bb92da9..9686d1d 100644 --- a/application/modules/dev/controllers/SessionController.php +++ b/application/modules/dev/controllers/SessionController.php @@ -129,6 +129,7 @@ class dev_SessionController extends Zend_Controller_Action $editsession = new dev_Form_Session(array('buttontext' => 'Edit Session','bootmenuentries'=>$bootmenuentries,'clients'=>$clients,'bootos'=>$bootos,'bootisos'=>$bootisos,'memberships'=>$memberships),$_POST); if ($editsession->isValid($_POST)) { + $_SESSION['alphasessionID'] = $_POST['alphasessionID']; $session = new Application_Model_Session($_POST); $session->setID($this->_request->getParam('sessionID')); $session->setTime(strtotime($_POST['time'])); |
