From 4593d5eb1ac0c6b7f89e1c3a5a119cd299386b3a Mon Sep 17 00:00:00 2001 From: Thom Date: Fri, 27 Oct 2023 16:54:37 +0200 Subject: [PATCH] Fix typo (#6597) --- interface/lib/classes/tform_base.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/lib/classes/tform_base.inc.php b/interface/lib/classes/tform_base.inc.php index 25c64409e8..7b031dd345 100644 --- a/interface/lib/classes/tform_base.inc.php +++ b/interface/lib/classes/tform_base.inc.php @@ -1187,7 +1187,7 @@ class tform_base { if (count($sql_v6_explode) < count($explode_field_value) && isset($sql_v6['ip_address'])) { $errmsg = $validator['errmsg']; if(isset($this->wordbook[$errmsg])) { - $this->errorMessage .= $this->wordbook[$errmsg].$sql_v6[ip_address]."
\r\n"; + $this->errorMessage .= $this->wordbook[$errmsg].$sql_v6['ip_address']."
\r\n"; } else { $this->errorMessage .= $errmsg."
\r\n"; } -- GitLab