From d7513ddd542f39a9a27a66eef8832d5444820583 Mon Sep 17 00:00:00 2001 From: Laurent Date: Fri, 22 Jun 2018 18:19:26 +0200 Subject: [PATCH] Update bootstrap.php Cache::config is deprecated in latest cakePHP versions. Should be setConfig/getConfig --- config/bootstrap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/bootstrap.php b/config/bootstrap.php index e871df4..636a620 100644 --- a/config/bootstrap.php +++ b/config/bootstrap.php @@ -15,7 +15,7 @@ /** * Used by EavBehavior. */ -Cache::config('eav_table_attrs', [ +Cache::setConfig('eav_table_attrs', [ 'className' => 'File', 'prefix' => 'eav_attrs_', 'path' => CACHE . 'eav/',