From 36083b8b2837b40c8f3398fe444aceff140c44ae Mon Sep 17 00:00:00 2001 From: Holger Schletz Date: Fri, 18 Dec 2020 18:33:32 +0100 Subject: [PATCH] Removed Xdebug 2 workaround. --- module/Tools/Controller/Export.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/module/Tools/Controller/Export.php b/module/Tools/Controller/Export.php index 6cc1f2cff..eebec763a 100644 --- a/module/Tools/Controller/Export.php +++ b/module/Tools/Controller/Export.php @@ -62,10 +62,6 @@ public function __invoke(\ZF\Console\Route $route, \Zend\Console\Adapter\Adapter if ($validate) { ini_set('display_errors', true); // Print reason for validation failure ini_set('log_errors', false); // Prevent duplicate message in case of validation failure - if (extension_loaded('xdebug')) { - // Prevent printing backtraces on validation errors - xdebug_disable(); - } } $clients = $this->_clientManager->getClients(null, 'IdString');