Update join.blade.php
This commit is contained in:
parent
451b203229
commit
617327c05a
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue