From c0e67dc240590f94d718c97751639b3ab2aae3d8 Mon Sep 17 00:00:00 2001 From: Michael Kaufmann Date: Wed, 30 Jan 2019 12:32:06 +0100 Subject: [PATCH] fix incorrect usage of class-constant Signed-off-by: Michael Kaufmann --- lib/Froxlor/Validate/Check.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Froxlor/Validate/Check.php b/lib/Froxlor/Validate/Check.php index 79a266bc..ce9fee64 100644 --- a/lib/Froxlor/Validate/Check.php +++ b/lib/Froxlor/Validate/Check.php @@ -60,7 +60,7 @@ class Check } } } - if (in_array(FORMFIELDS_PLAUSIBILITY_CHECK_OK, $returnvalue)) { + if (in_array(self::FORMFIELDS_PLAUSIBILITY_CHECK_OK, $returnvalue)) { // be sure to deactivate the other one for the froxlor-vhost // to avoid having a settings-deadlock foreach ($check_array[$fieldname]['deactivate'] as $setting => $value) {