From 31abcc3a877613467f1bcc074f201c72a340470b Mon Sep 17 00:00:00 2001 From: Michael Schlueter Date: Sat, 23 Mar 2024 17:13:45 +0100 Subject: [PATCH] this fixes a PHP ERROR: Creation of dynamic property iv is deprecated issue --- lib/Horde/Crypt/Blowfish.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/Horde/Crypt/Blowfish.php b/lib/Horde/Crypt/Blowfish.php index 5587a330..3458ef9c 100644 --- a/lib/Horde/Crypt/Blowfish.php +++ b/lib/Horde/Crypt/Blowfish.php @@ -51,6 +51,13 @@ class Horde_Crypt_Blowfish */ protected $_crypt; + /** + * iv. + * + * @var bool + */ + protected $iv; + /** * Constructor. *