File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,9 @@ PHP NEWS
12
12
. Fixed bug #74083 (master PHP-fpm is stopped on multiple reloads).
13
13
(Maksim Nikulin)
14
14
15
+ -Opcache:
16
+ . Fixed bug #78512 (Cannot make preload work). (Dmitry)
17
+
15
18
- Reflection:
16
19
. Fixed bug #78697 (ReflectionClass::implementsInterface - inaccurate error
17
20
message with traits). (villfa)
Original file line number Diff line number Diff line change @@ -4565,6 +4565,11 @@ static int accel_finish_startup(void)
4565
4565
zend_accel_error (ACCEL_LOG_FATAL , "Preloading failed to waitpid(%d)" , pid );
4566
4566
return FAILURE ;
4567
4567
}
4568
+
4569
+ if (ZCSG (preload_script )) {
4570
+ preload_load ();
4571
+ }
4572
+
4568
4573
zend_shared_alloc_unlock ();
4569
4574
if (WIFEXITED (status ) && WEXITSTATUS (status ) == 0 ) {
4570
4575
return SUCCESS ;
You can’t perform that action at this time.
0 commit comments