mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00
Merge branch 'PHP-7.2' into PHP-7.3
This commit is contained in:
commit
bada2049ca
4 changed files with 5 additions and 4 deletions
3
NEWS
3
NEWS
|
@ -2,6 +2,9 @@ PHP NEWS
|
|||
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||
?? ??? ????, PHP 7.3.8
|
||||
|
||||
- Opcache:
|
||||
. Fixed bug #78106 (Path resolution fails if opcache disabled during request).
|
||||
(Nikita)
|
||||
|
||||
27 Jun 2019, PHP 7.3.7
|
||||
|
||||
|
|
|
@ -2360,7 +2360,6 @@ static void accel_activate(void)
|
|||
zend_alter_ini_entry_chars(key, "0", 1, ZEND_INI_SYSTEM, ZEND_INI_STAGE_RUNTIME);
|
||||
zend_string_release_ex(key, 0);
|
||||
zend_accel_error(ACCEL_LOG_WARNING, "Can't cache files in chroot() directory with too big inode");
|
||||
ZCG(accelerator_enabled) = 0;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
--TEST--
|
||||
Bug #78106: PHP Fatal error: Uncaught Error: Class 'Phpfastcache\Config\Config' not found
|
||||
--XFAIL--
|
||||
Not fixed yet
|
||||
Bug #78106: Path resolution fails if opcache disabled during request
|
||||
--FILE--
|
||||
<?php
|
||||
|
||||
|
|
|
@ -240,6 +240,7 @@ static ZEND_INI_MH(OnEnable)
|
|||
return FAILURE;
|
||||
} else {
|
||||
*p = 0;
|
||||
ZCG(accelerator_enabled) = 0;
|
||||
return SUCCESS;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue