Fix memcached/memcache module check

This commit is contained in:
Robin McCorkell 2015-10-20 21:45:27 +01:00
parent a0e479342c
commit 03dd1386da
1 changed files with 2 additions and 2 deletions

View File

@ -195,7 +195,7 @@ class CheckSetupController extends Controller {
return '';
}
/**
* Whether the php version is still supported (at time of release)
* according to: https://secure.php.net/supported-versions.php
@ -244,7 +244,7 @@ class CheckSetupController extends Controller {
// there are two different memcached modules for PHP
// we only support memcached and not memcache
// https://code.google.com/p/memcached/wiki/PHPClientComparison
return !extension_loaded('memcached') && extension_loaded('memcache');
return !(!extension_loaded('memcached') && extension_loaded('memcache'));
}
/**