Skip to content
Snippets Groups Projects

Issue #2377429: hook_requirements() check the APC version but it reports it as APCu version

Merged Issue #2377429: hook_requirements() check the APC version but it reports it as APCu version
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -28,7 +28,7 @@ function apc_requirements($phase) {
}
else {
$version = phpversion('apc');
$name = $t('APCu');
$name = $t('APC');
$description = $t('APC needs version >=3.1.1.');
$meets_version = version_compare($version, '3.1.1') >= 0;
Loading