Update join.blade.php
This commit is contained in:
parent
cf057e156b
commit
3ed504cc53
|
|
@ -11,16 +11,15 @@ $app = addslashes($_GET["app"]);*/
|
||||||
if (Auth::check()) {
|
if (Auth::check()) {
|
||||||
$username = addslashes(Auth::user()->name);
|
$username = addslashes(Auth::user()->name);
|
||||||
$id = addslashes(Auth::id());
|
$id = addslashes(Auth::id());
|
||||||
$app = '' . addslashes(Auth::id());
|
$app = 'http://morblox.us/Asset/CharacterFetch.ashx?userId=' . addslashes(Auth::id());
|
||||||
} else {
|
} else {
|
||||||
$randName = mt_rand(1, 9999);
|
$randName = mt_rand(1, 9999);
|
||||||
$username = "Guest " . $randName;
|
$username = "Guest " . $randName;
|
||||||
$id = 0;
|
$id = 0;
|
||||||
$app = '0'
|
$app = 'http://morblox.us/Asset/CharacterFetch.ashx?userId=0'
|
||||||
}
|
}
|
||||||
$ip = addslashes($_GET["ip"]);
|
$ip = addslashes($_GET["ip"]);
|
||||||
$port = addslashes($_GET["port"]);
|
$port = addslashes($_GET["port"]);
|
||||||
$app = '0';
|
|
||||||
|
|
||||||
ob_start();
|
ob_start();
|
||||||
@endphp
|
@endphp
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue