From 57987c0f79c2d78b5cd7fe4c838a7ede223bc8c0 Mon Sep 17 00:00:00 2001 From: ClumsyAdmin <59402569+ClumsyAdmin@users.noreply.github.com> Date: Sat, 17 Jul 2021 13:02:15 -0400 Subject: [PATCH] Update Allocation.php (#3468) Max port typo --- app/Models/Allocation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/Allocation.php b/app/Models/Allocation.php index 993657d78..9363b4063 100644 --- a/app/Models/Allocation.php +++ b/app/Models/Allocation.php @@ -56,7 +56,7 @@ class Allocation extends Model public static $validationRules = [ 'node_id' => 'required|exists:nodes,id', 'ip' => 'required|ip', - 'port' => 'required|numeric|between:1024,65553', + 'port' => 'required|numeric|between:1024,65535', 'ip_alias' => 'nullable|string', 'server_id' => 'nullable|exists:servers,id', 'notes' => 'nullable|string|max:256',