diff options
| author | Simon | 2011-03-15 11:15:47 +0100 |
|---|---|---|
| committer | Simon | 2011-03-15 11:15:47 +0100 |
| commit | 1c83a304a1619de153649e14730aa05a07a87f10 (patch) | |
| tree | 7b8002e4e0e0fa65a422eec1d0b25fb5a80cbd7b /application/modules/dev/controllers/BootosController.php | |
| parent | die verschobenen ansichten löschen (diff) | |
| download | pbs2-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.php | 10 |
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'); } |
