From 9a964cd1b9fce7ff0c56b5478f22311733583273 Mon Sep 17 00:00:00 2001 From: Partydragen Date: Sun, 14 Jul 2024 11:37:47 +0200 Subject: [PATCH] Fix array for not start with validation (#3522) --- core/classes/Core/Validate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/classes/Core/Validate.php b/core/classes/Core/Validate.php index 0a8684575f..097dcc91b3 100644 --- a/core/classes/Core/Validate.php +++ b/core/classes/Core/Validate.php @@ -364,8 +364,8 @@ public static function check(array $source, array $items = []): Validate 'rule' => self::NOT_START_WITH, 'fallback' => "$item must not start with $denied_value.", ]); + break; } - break; } break;