diff options
Diffstat (limited to 'application/modules/fbgui/controllers/IndexController.php')
| -rw-r--r-- | application/modules/fbgui/controllers/IndexController.php | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/application/modules/fbgui/controllers/IndexController.php b/application/modules/fbgui/controllers/IndexController.php index bfd2bec..3567f70 100644 --- a/application/modules/fbgui/controllers/IndexController.php +++ b/application/modules/fbgui/controllers/IndexController.php @@ -55,23 +55,27 @@ class Fbgui_IndexController extends Zend_Controller_Action $pbsFilter = new Pbs_Filter(); $bootmenuID = $pbsFilter->evaluate(); if($bootmenuID != null){ - print_a('Debug Output', - 'Session is now set', - 'Your sessionID is '.$session->getID(), - 'Your alphasessionID is '.$session->getAlphasessionID(), - 'Your client is '.$session->getClientID(), - 'goto bootmenu '.$bootmenuID); + /* + print_a('Debug Output', + 'Session is now set', + 'Your sessionID is '.$session->getID(), + 'Your alphasessionID is '.$session->getAlphasessionID(), + 'Your client is '.$session->getClientID(), + 'goto bootmenu '.$bootmenuID); + */ $bootmenuentriesMapper = new Application_Model_BootMenuEntriesMapper(); $res = $bootmenuentriesMapper->findBy(array('bootmenuID' => $bootmenuID),false); $this->view->entries = $res; } else{ + /* print_a('Debug Output', 'Session is now set', 'Your sessionID is '.$session->getID(), 'Your alphasessionID is '.$session->getAlphasessionID(), 'Your client is '.$session->getClientID(), 'there is no bootmenu for you'); + */ echo "<a href='/fbgui/auth/login/'>Goto Login to get a Bootmenu</a>"; } } |
