1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
  Fix GH-16849: Error dialog causes process to hang
This commit is contained in:
Christoph M. Becker
2024-11-25 23:08:11 +01:00
2 changed files with 5 additions and 1 deletions

3
NEWS
View File

@@ -63,6 +63,9 @@ PHP NEWS
- SOAP:
. Fix make check being invoked in ext/soap. (Ma27)
- Windows:
. Fixed bug GH-16849 (Error dialog causes process to hang). (cmb)
07 Nov 2024, PHP 8.3.14RC1
- CLI:

View File

@@ -2078,8 +2078,9 @@ zend_result php_module_startup(sapi_module_struct *sf, zend_module_entry *additi
_set_invalid_parameter_handler(old_invalid_parameter_handler);
}
/* Disable the message box for assertions.*/
/* Disable the message box for assertions and errors.*/
_CrtSetReportMode(_CRT_ASSERT, 0);
_CrtSetReportMode(_CRT_ERROR, 0);
#endif
#ifdef ZTS