merchant

Merchant backend to process payments, run by merchants
Log | Files | Refs | Submodules | README | LICENSE

commit d40f97186cd0e7d8f5fc569fb26b82040fee9ae7
parent 21a199e8d5e62ef719aa35ea0fd622376035b410
Author: Florian Dold <florian.dold@gmail.com>
Date:   Mon, 25 Jan 2016 17:27:13 +0100

correct /pay url

Diffstat:
Msrc/frontend/fulfillment.php | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/frontend/fulfillment.php b/src/frontend/fulfillment.php @@ -82,7 +82,7 @@ if (null === $my_payment) if (true !== get($my_payment["is_payed"], false)) { - $pay_url = url_rel("pay", true); + $pay_url = url_rel("pay.php", true); echo "<p>you have not payed for this contract: " . $hc . "</p>"; echo "<p>Asking the wallet to re-execute it ... </p>"; echo "<script>executePayment('$hc', '$pay_url');</script>";