Skip to content

Commit

Permalink
Fix array for not start with validation (#3522)
Browse files Browse the repository at this point in the history
  • Loading branch information
partydragen authored Jul 14, 2024
1 parent 56f24c7 commit 9a964cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/classes/Core/Validate.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 9a964cd

Please sign in to comment.