diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-03-30 16:57:02 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2016-03-30 16:57:02 +0200 |
commit | 748a59db11df20f82a90dadd657af700ce94cc2d (patch) | |
tree | 029aed098146d8542d00d76816f485809e935281 /lib | |
parent | 7d7a595969a70be2afe857eb5cedd16dfc999e0c (diff) | |
parent | f1c23a92a4db7a13b2673103d61cfab963f2d510 (diff) | |
download | nextcloud-server-748a59db11df20f82a90dadd657af700ce94cc2d.tar.gz nextcloud-server-748a59db11df20f82a90dadd657af700ce94cc2d.zip |
Merge pull request #23654 from owncloud/issue-23653-xcache-detection-fails
xcache.var_size with 64M should evaluate to isAvailable
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/memcache/xcache.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/memcache/xcache.php b/lib/private/memcache/xcache.php index eea55fefc4d..e80901faadc 100644 --- a/lib/private/memcache/xcache.php +++ b/lib/private/memcache/xcache.php @@ -125,7 +125,7 @@ class XCache extends Cache implements IMemcache { // AND administration functions are password-protected. return false; } - $var_size = \OC::$server->getIniWrapper()->getNumeric('xcache.var_size'); + $var_size = \OC::$server->getIniWrapper()->getBytes('xcache.var_size'); if (!$var_size) { return false; } |