summaryrefslogtreecommitdiffstats
path: root/application/modules/dev/controllers
diff options
context:
space:
mode:
authorSimon2011-03-16 13:01:52 +0100
committerSimon2011-03-16 13:01:52 +0100
commit23356b4d986955a981c4b164bea553c2560aec4a (patch)
treea023e77bf92a31ba314a5e58e3cf11861915e579 /application/modules/dev/controllers
parentArbeiten am Clientcontroller, Membership in Auth gesetzt (diff)
parentDefault KCL wird jetzt automatisch geupdated (diff)
downloadpbs2-23356b4d986955a981c4b164bea553c2560aec4a.tar.gz
pbs2-23356b4d986955a981c4b164bea553c2560aec4a.tar.xz
pbs2-23356b4d986955a981c4b164bea553c2560aec4a.zip
Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2
Diffstat (limited to 'application/modules/dev/controllers')
-rw-r--r--application/modules/dev/controllers/ErrorController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/application/modules/dev/controllers/ErrorController.php b/application/modules/dev/controllers/ErrorController.php
index 189614b..f317494 100644
--- a/application/modules/dev/controllers/ErrorController.php
+++ b/application/modules/dev/controllers/ErrorController.php
@@ -6,7 +6,6 @@ class dev_ErrorController extends Zend_Controller_Action
public function errorAction()
{
$errors = $this->_getParam('error_handler');
-
switch ($errors->type) {
case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_ROUTE:
case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_CONTROLLER:
@@ -21,6 +20,7 @@ class dev_ErrorController extends Zend_Controller_Action
// application error
$this->getResponse()->setHttpResponseCode(500);
$this->view->message = 'Application error';
+ print_a($errors);
break;
}