summaryrefslogtreecommitdiffstats
path: root/appinfo/application.php
diff options
context:
space:
mode:
Diffstat (limited to 'appinfo/application.php')
-rw-r--r--appinfo/application.php8
1 files changed, 0 insertions, 8 deletions
diff --git a/appinfo/application.php b/appinfo/application.php
index 4c99583e6..2dea28fc2 100644
--- a/appinfo/application.php
+++ b/appinfo/application.php
@@ -67,14 +67,6 @@ class Application extends App {
public function __construct(array $urlParams=array()){
parent::__construct('news', $urlParams);
- // Turn all errors into exceptions to combat shitty library behavior
- set_error_handler(function ($code, $message) {
- if ($code === E_ERROR || $code === E_USER_ERROR) {
- throw new \Exception($message, $code);
- }
- });
-
-
$container = $this->getContainer();