Skip to content
This repository has been archived by the owner on Jan 2, 2020. It is now read-only.

Allow APCu, but disallow APC extension. #72

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion check/controller/composer.php
Expand Up @@ -103,7 +103,7 @@ public function hasCurl()
*/
public function hasApc()
{
if (!extension_loaded('apcu')) {
if (extension_loaded('apcu') || !extension_loaded('apc')) {
return false;
}

Expand Down