From 6e41f19b0264af8bf1211daef46ba6a5395d2201 Mon Sep 17 00:00:00 2001 From: djmaze Date: Thu, 15 Jul 2021 07:52:34 +0200 Subject: [PATCH] Forgot to commit regarding APC => APCU Mentioned at https://github.com/the-djmaze/snappymail/issues/99#issuecomment-879835900 --- .../v/0.0.0/app/libraries/RainLoop/Config/AbstractConfig.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snappymail/v/0.0.0/app/libraries/RainLoop/Config/AbstractConfig.php b/snappymail/v/0.0.0/app/libraries/RainLoop/Config/AbstractConfig.php index 8333befa7..aeae28f1c 100644 --- a/snappymail/v/0.0.0/app/libraries/RainLoop/Config/AbstractConfig.php +++ b/snappymail/v/0.0.0/app/libraries/RainLoop/Config/AbstractConfig.php @@ -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')); }