1) enable error logging in PHP with log_errors=on in php.ini
2) create a fatal error in a component, for example a spelling mistake
3) open a page that loads the component
Fatal error logged to the server's error log.
No message in the server log, brief error displayed in browser only.
Joomla 3.5.0, PHP 7.0
I think the changes introduced by #9270 have caused this. I have temporarily fixed this locally by adding the following to doErrorHandling() in plugins/system/redirect/redirect.php:
if (ini_get('log_errors'))
error_log('PHP Fatal error: '.$error->getMessage().' in '.$error->getFile().' on line '.$error->getLine());
Labels |
Added:
?
|
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2016-04-05 09:14:35 |
Closed_By | ⇒ | brianteeman |