From 2baa988d47166181bc5422a212a88504ecbc8f87 Mon Sep 17 00:00:00 2001 From: Thomas G <62822072+Thomasluigi07@users.noreply.github.com> Date: Tue, 9 Aug 2022 05:04:29 +1000 Subject: [PATCH] Update insertasset.blade.php --- resources/views/client/insertasset.blade.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/resources/views/client/insertasset.blade.php b/resources/views/client/insertasset.blade.php index 0bd44b8..af7a374 100644 --- a/resources/views/client/insertasset.blade.php +++ b/resources/views/client/insertasset.blade.php @@ -5,15 +5,13 @@ $userid = (int)$_GET["userid"]; $sid = (int)$_GET["sid"]; //http://roblox.com/Game/Tools/InsertAsset.ashx?nsets=20&type=user&userid=11744447 - if ($nsets == 20 && $type == "user") - { + if ($nsets == 20 && $type == "user") { header("content-type:text/xml"); $file = "http://morblox.us/stamper/base/{$userid}.xml"; readfile($file); // //header("location:" . "http://morblox.us/stamper/base/{$userid}.xml"); - } elseif ($sid != 0 && $type == "0") - { + } else if ($sid != 0 && $type == "0") { header("content-type:text/xml"); $file = "http://morblox.us/stamper/sid/{$sid}.xml"; readfile($file);