Merge branch '2.4'

* 2.4:
  [Debug] fix #10313: FlattenException not found because of https://bugs.php.net/42098
This commit is contained in:
Fabien Potencier 2014-04-30 08:22:38 +02:00
commit 49bc4f1469

View File

@ -165,6 +165,9 @@ class ErrorHandler
return true;
}
if (!class_exists('Symfony\Component\Debug\Exception\FlattenException')) {
require __DIR__.'/Exception/FlattenException.php';
}
if (PHP_VERSION_ID < 50400 && isset($context['GLOBALS']) && is_array($context)) {
unset($context['GLOBALS']);