summaryrefslogtreecommitdiffstats
path: root/application/controllers/ErrorController.php
diff options
context:
space:
mode:
authorSimon2011-04-21 14:04:59 +0200
committerSimon2011-04-21 14:04:59 +0200
commitb341e58395139a49a95175e0bdc9e3f0458f675d (patch)
treefd1ebb785e32de46fa40902a2c51ca62e44f1654 /application/controllers/ErrorController.php
parentFehler in sql korrigiert (diff)
parentMerge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2 (diff)
downloadpbs2-b341e58395139a49a95175e0bdc9e3f0458f675d.tar.gz
pbs2-b341e58395139a49a95175e0bdc9e3f0458f675d.tar.xz
pbs2-b341e58395139a49a95175e0bdc9e3f0458f675d.zip
Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2
Diffstat (limited to 'application/controllers/ErrorController.php')
-rw-r--r--application/controllers/ErrorController.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/application/controllers/ErrorController.php b/application/controllers/ErrorController.php
index abf3ec1..a9a448d 100644
--- a/application/controllers/ErrorController.php
+++ b/application/controllers/ErrorController.php
@@ -26,13 +26,13 @@ class ErrorController extends Zend_Controller_Action
$this->getResponse()->setHttpResponseCode(404);
$this->view->message = 'Page not found';
$this->_redirect('/user/');
- # print_a($errors);
+ print_a($errors);
break;
default:
// application error
$this->getResponse()->setHttpResponseCode(500);
$this->view->message = 'Application error - Please contact the admin';
- # print_a($errors);
+ print_a($errors);
break;
}