Skip to content

Commit

Permalink
Remove Extra / in URI
Browse files Browse the repository at this point in the history
Fix extra / in URI that makes link to tx fail on block explorer.
  • Loading branch information
Cactii1 authored and serhack committed Dec 18, 2020
1 parent 90e058b commit fcedf21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/monero-gateway/admin/order-history-page.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
<?php foreach($details['txs'] as $tx): ?>
<tr>
<td>
<a href="<?php echo MONERO_GATEWAY_EXPLORER_URL.'/tx/'.$tx['txid']; ?>" target="_blank"><?php echo $tx['txid']; ?></a>
<a href="<?php echo MONERO_GATEWAY_EXPLORER_URL.'tx/'.$tx['txid']; ?>" target="_blank"><?php echo $tx['txid']; ?></a>
</td>
<td><?php echo $tx['height']; ?></td>
<td><?php echo sprintf(MONERO_GATEWAY_ATOMIC_UNITS_SPRINTF, $tx['amount'] / MONERO_GATEWAY_ATOMIC_UNITS_POW); ?> XMR</td>
Expand Down

0 comments on commit fcedf21

Please sign in to comment.