Merge branch 'PHP-7.4'

* PHP-7.4:
  Fix #78656: Parse errors classified as highest log-level
This commit is contained in:
Christoph M. Becker 2019-10-09 17:30:37 +02:00
commit 508a179568

View File

@ -1294,7 +1294,7 @@ static ZEND_COLD void php_error_cb(int type, const char *error_filename, const u
break;
case E_PARSE:
error_type_str = "Parse error";
syslog_type_int = LOG_EMERG;
syslog_type_int = LOG_ERR;
break;
case E_NOTICE:
case E_USER_NOTICE: