Update join.blade.php

This commit is contained in:
Thomas G 2022-07-12 20:26:31 +10:00
parent 451b203229
commit 617327c05a
1 changed files with 2 additions and 2 deletions

View File

@ -13,8 +13,8 @@ if (Auth::check()) {
$username = addslashes(Auth::user()->name); $username = addslashes(Auth::user()->name);
$id = addslashes(Auth::id()); $id = addslashes(Auth::id());
} else { } else {
$randName = mt_rand(1000, 9999); $randName = mt_rand(1, 9999);
$randId = mt_rand(100000, 999999); $randId = mt_rand(-1, -9999);
$username = "Guest " . $randName; $username = "Guest " . $randName;
$id = $randId; $id = $randId;
} }