Skip to content
Snippets Groups Projects
Commit 748a59db authored by Thomas Müller's avatar Thomas Müller
Browse files

Merge pull request #23654 from owncloud/issue-23653-xcache-detection-fails

xcache.var_size with 64M should evaluate to isAvailable
parents 7d7a5959 f1c23a92
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment