Forgot to commit regarding APC => APCU

Mentioned at https://github.com/the-djmaze/snappymail/issues/99#issuecomment-879835900
This commit is contained in:
djmaze 2021-07-15 07:52:34 +02:00
parent c46a28a8cf
commit 6e41f19b02

View file

@ -41,7 +41,7 @@ abstract class AbstractConfig
$this->sFileHeader = $sFileHeader;
$this->aData = $this->defaultValues();
$this->bUseApcCache = APP_USE_APC_CACHE &&
$this->bUseApcCache = APP_USE_APCU_CACHE &&
\MailSo\Base\Utils::FunctionExistsAndEnabled(array('apcu_fetch', 'apcu_store'));
}