From 2af24ae768bbdbe66880cb331ea00f4703a23a5e Mon Sep 17 00:00:00 2001 From: Tatjana Dehler Date: Thu, 4 Apr 2024 11:32:56 +0200 Subject: [PATCH] Fix typo _connect_erro Correct _connect_erro to _connect_errno in order to prevent PHP8.2 deprecation warning for creating dynamic properties. Signed-off-by: Tatjana Dehler --- .devilbox/www/include/lib/container/BaseClass.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devilbox/www/include/lib/container/BaseClass.php b/.devilbox/www/include/lib/container/BaseClass.php index 548bc394..f85df346 100644 --- a/.devilbox/www/include/lib/container/BaseClass.php +++ b/.devilbox/www/include/lib/container/BaseClass.php @@ -181,7 +181,7 @@ class BaseClass */ public function setConnectErrno($errno) { - $this->_connect_erro = $errno; + $this->_connect_errno = $errno; } /**