Update to Drupal 8.2.5. For more information, see https://www.drupal.org/project/drupal/releases/8.2.5
This commit is contained in:
parent
8544b60b39
commit
db56c09587
86 changed files with 2413 additions and 488 deletions
|
|
@ -929,7 +929,7 @@ function file_progress_implementation() {
|
|||
if (extension_loaded('uploadprogress')) {
|
||||
$implementation = 'uploadprogress';
|
||||
}
|
||||
elseif (extension_loaded('apc') && ini_get('apc.rfc1867')) {
|
||||
elseif (version_compare(PHP_VERSION, '7', '<') && extension_loaded('apc') && ini_get('apc.rfc1867')) {
|
||||
$implementation = 'apc';
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue