Explorar o código

Merge pull request #15194 from owncloud/fix-15146

Do not use APCu when apc.enabled is Off.
Thomas Müller %!s(int64=9) %!d(string=hai) anos
pai
achega
c8f0cbab5a
Modificáronse 1 ficheiros con 2 adicións e 0 borrados
  1. 2 0
      lib/private/memcache/apcu.php

+ 2 - 0
lib/private/memcache/apcu.php

@@ -12,6 +12,8 @@ class APCu extends APC {
 	static public function isAvailable() {
 	static public function isAvailable() {
 		if (!extension_loaded('apcu')) {
 		if (!extension_loaded('apcu')) {
 			return false;
 			return false;
+		} elseif (!ini_get('apc.enabled')) {
+			return false;
 		} elseif (!ini_get('apc.enable_cli') && \OC::$CLI) {
 		} elseif (!ini_get('apc.enable_cli') && \OC::$CLI) {
 			return false;
 			return false;
 		} elseif (version_compare(phpversion('apc'), '4.0.6') === -1) {
 		} elseif (version_compare(phpversion('apc'), '4.0.6') === -1) {