From 0f79080a8b8c8c69e48a14ed91b10fe02b446d22 Mon Sep 17 00:00:00 2001 From: mhcwebdesign Date: Tue, 9 Jan 2024 11:02:58 +0000 Subject: [PATCH] Update startup.php Encryption constructor has no arguments --- upload/catalog/controller/startup/startup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upload/catalog/controller/startup/startup.php b/upload/catalog/controller/startup/startup.php index 22e7f44a6aa..f0c92d5efb4 100644 --- a/upload/catalog/controller/startup/startup.php +++ b/upload/catalog/controller/startup/startup.php @@ -209,6 +209,6 @@ public function index() { $this->registry->set('cart', new Cart\Cart($this->registry)); // Encryption - $this->registry->set('encryption', new Encryption($this->config->get('config_encryption'))); + $this->registry->set('encryption', new Encryption()); } }