summaryrefslogtreecommitdiffstats
path: root/application/modules/dev/controllers/BootosController.php
diff options
context:
space:
mode:
authorSimon2011-03-15 11:15:47 +0100
committerSimon2011-03-15 11:15:47 +0100
commit1c83a304a1619de153649e14730aa05a07a87f10 (patch)
tree7b8002e4e0e0fa65a422eec1d0b25fb5a80cbd7b /application/modules/dev/controllers/BootosController.php
parentdie verschobenen ansichten löschen (diff)
downloadpbs2-1c83a304a1619de153649e14730aa05a07a87f10.tar.gz
pbs2-1c83a304a1619de153649e14730aa05a07a87f10.tar.xz
pbs2-1c83a304a1619de153649e14730aa05a07a87f10.zip
links korrigiert, dev ist nun lauffähig
Diffstat (limited to 'application/modules/dev/controllers/BootosController.php')
-rw-r--r--application/modules/dev/controllers/BootosController.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/application/modules/dev/controllers/BootosController.php b/application/modules/dev/controllers/BootosController.php
index 00c2297..36c1cf5 100644
--- a/application/modules/dev/controllers/BootosController.php
+++ b/application/modules/dev/controllers/BootosController.php
@@ -70,7 +70,7 @@ class dev_BootosController extends Zend_Controller_Action
}
- $this->_redirect('/bootos');
+ $this->_redirect('/dev/bootos');
}
}
@@ -86,7 +86,7 @@ class dev_BootosController extends Zend_Controller_Action
if (!isset($_POST["editbootos"])){
$bootosID = $this->_request->getParam('bootosID');
if (!isset($bootosID) || !is_numeric($bootosID)){
- $this->_redirect('/bootos');
+ $this->_redirect('/dev/bootos');
} else {
$bootos = new Application_Model_BootOs();
$bootosmapper = new Application_Model_BootOsMapper();
@@ -116,7 +116,7 @@ class dev_BootosController extends Zend_Controller_Action
echo "Message: " . $e->getMessage() . "<br/>";
}
- $this->_redirect('/bootos');
+ $this->_redirect('/dev/bootos');
}
}
@@ -129,14 +129,14 @@ class dev_BootosController extends Zend_Controller_Action
{
$bootosID = $this->_request->getParam('bootosID');
if (!isset($bootosID)){
- $this->_redirect('/bootos');
+ $this->_redirect('/dev/bootos');
} else {
$bootos = new Application_Model_BootOs();
$bootos->setID($bootosID);
$bootosmapper = new Application_Model_BootOsMapper();
$bootosmapper->delete($bootos);
}
- $this->_redirect('/bootos');
+ $this->_redirect('/dev/bootos');
}