summaryrefslogtreecommitdiffstats
path: root/application/modules/fbgui
diff options
context:
space:
mode:
authormichael pereira2011-04-13 20:14:15 +0200
committermichael pereira2011-04-13 20:14:15 +0200
commit2b37bf959538e619702e43dabaf8e859d7414284 (patch)
tree85e7b406f78286b93fa9803cd8561607832fbb22 /application/modules/fbgui
parentHTML Fehler korrigiert (diff)
downloadpbs2-2b37bf959538e619702e43dabaf8e859d7414284.tar.gz
pbs2-2b37bf959538e619702e43dabaf8e859d7414284.tar.xz
pbs2-2b37bf959538e619702e43dabaf8e859d7414284.zip
resource fix membership
Diffstat (limited to 'application/modules/fbgui')
-rw-r--r--application/modules/fbgui/controllers/IndexController.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/application/modules/fbgui/controllers/IndexController.php b/application/modules/fbgui/controllers/IndexController.php
index 450dd14..3b83008 100644
--- a/application/modules/fbgui/controllers/IndexController.php
+++ b/application/modules/fbgui/controllers/IndexController.php
@@ -55,14 +55,14 @@ 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);
- */
+
$bootmenuentriesMapper = new Application_Model_BootMenuEntriesMapper();
$res = $bootmenuentriesMapper->findBy(array('bootmenuID' => $bootmenuID),false);
$this->view->entries = $res;
@@ -71,14 +71,14 @@ class Fbgui_IndexController extends Zend_Controller_Action
}
}
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 your Bootmenu</a>";
}
}