mirror of
https://github.com/rottenwheel/moner.ooo.git
synced 2024-11-16 14:57:35 +00:00
index: swap EUR for USD as default currency to query the price of
This commit is contained in:
parent
b147f1d2d1
commit
f5eb94b8c1
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue