Browse Source

disable these xdebug settings only, if xdebug is loaded

jakoch 11 years ago
parent
commit
8fd82784b2
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/Composer/Console/Application.php

+ 2 - 2
src/Composer/Console/Application.php

@@ -56,11 +56,11 @@ class Application extends BaseApplication
 
     public function __construct()
     {
-        if (function_exists('ini_set')) {
+        if (function_exists('ini_set') && extension_loaded('xdebug')) {
             ini_set('xdebug.show_exception_trace', false);
             ini_set('xdebug.scream', false);
-
         }
+
         if (function_exists('date_default_timezone_set') && function_exists('date_default_timezone_get')) {
             date_default_timezone_set(@date_default_timezone_get());
         }