From f5eb94b8c1f2fc1741b708378a11b1e7e1171aff Mon Sep 17 00:00:00 2001 From: rottenwheel <92872541+rottenwheel@users.noreply.github.com> Date: Sat, 19 Oct 2024 00:36:23 -0500 Subject: [PATCH] index: swap EUR for USD as default currency to query the price of --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 7ba03be..5284a37 100644 --- a/index.php +++ b/index.php @@ -78,7 +78,7 @@ foreach ($language_files as $language_file) { // Calculation through GET parameters -$xmr_in = isset($_GET["in"]) ? strtoupper(htmlspecialchars($_GET["in"])) : 'EUR'; +$xmr_in = isset($_GET["in"]) ? strtoupper(htmlspecialchars($_GET["in"])) : 'USD'; $xmr_amount = isset($_GET["xmr"]) ? floatval($_GET["xmr"]) : 1; $fiat_amount = isset($_GET["fiat"]) ? floatval($_GET["fiat"]) : ''; $conversion_direction = isset($_GET["direction"]) ? intval($_GET["direction"]) : 0;