summaryrefslogtreecommitdiffstats
path: root/application
diff options
context:
space:
mode:
Diffstat (limited to 'application')
-rw-r--r--application/controllers/IndexController.php4
-rw-r--r--application/modules/fbgui/controllers/IndexController.php6
-rw-r--r--application/modules/user/layouts/user.phtml3
3 files changed, 6 insertions, 7 deletions
diff --git a/application/controllers/IndexController.php b/application/controllers/IndexController.php
index 5120d6f..8ad2fc4 100644
--- a/application/controllers/IndexController.php
+++ b/application/controllers/IndexController.php
@@ -26,8 +26,8 @@ class IndexController extends Zend_Controller_Action
$mySession->postdata = $_POST;
}
- $d = new Pbs_Debug();
- $d->debug(array('MainIndexController',$_SERVER['REMOTE_ADDR'],implode("\t",$mySession->postdata)));
+ // $d = new Pbs_Debug();
+ // $d->debug(array('MainIndexController',$_SERVER['REMOTE_ADDR'],implode("\t",$mySession->postdata)));
$this->_redirect("/fbgui/index/index");
}
diff --git a/application/modules/fbgui/controllers/IndexController.php b/application/modules/fbgui/controllers/IndexController.php
index 1401be3..1860297 100644
--- a/application/modules/fbgui/controllers/IndexController.php
+++ b/application/modules/fbgui/controllers/IndexController.php
@@ -47,8 +47,8 @@ class Fbgui_IndexController extends Zend_Controller_Action
$this->view->notification = $pbsNotifier->notify('You have no membership, therefore you have no own BootMenu','info');
}
- $d = new Pbs_Debug();
- $d->debug(array('FBGuiIndexController',$_SERVER['REMOTE_ADDR'],implode("\t",$mySession->postdata)));
+ // $d = new Pbs_Debug();
+ // $d->debug(array('FBGuiIndexController',$_SERVER['REMOTE_ADDR'],implode("\t",$mySession->postdata)));
if(isset($mySession->postdata['bootisoID']) || isset($mySession->postdata['serialnumber'])){
// Create a session
@@ -63,7 +63,7 @@ class Fbgui_IndexController extends Zend_Controller_Action
elseif(isset($mySession->postdata['serialnumber'])){
$results = $bootisomapper->findBy(array('serialnumber' => $mySession->postdata['serialnumber']),true);
if(count($results) == 0){
- $this->_redirect('/fbgui/index/error/serialresult/noserial2');
+ $this->_redirect('/fbgui/index/error/serialresult/noserial');
}
$bootiso->setOptions($results[0]);
$bootiso->setID($results[0]['bootisoID']);
diff --git a/application/modules/user/layouts/user.phtml b/application/modules/user/layouts/user.phtml
index 672877b..5942725 100644
--- a/application/modules/user/layouts/user.phtml
+++ b/application/modules/user/layouts/user.phtml
@@ -23,8 +23,7 @@ echo $this->headScript()."\n";
</div>
<div id="sidepannel-top" class='portletNavigationTree'>
<ul class='navTreeLevel0'>
- <li class='navTreeItem'><a href='/'>&lt;&lt;</a></li>
- <li class='navTreeItem'><a href='/user/'>user</a></li>
+ <li class='navTreeItem'><a href='/user/'>Home</a></li>
<li>
<ul class='navTreeLevel1'>
<?php if(Zend_Auth::getInstance()->hasIdentity()) {