merchant

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

commit d1afdc9b9fffee7dc8557e8ec330d9d7bf9e4fd8
parent ea402fdb1a4a80e351d0291ac771f0c820ebe150
Author: Florian Dold <florian.dold@gmail.com>
Date:   Sun, 24 Jan 2016 20:26:05 +0100

correctly append contract identifier

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

diff --git a/src/frontend/generate_taler_contract.php b/src/frontend/generate_taler_contract.php @@ -132,7 +132,7 @@ else { $got_json = json_decode ($resp->body->toString (), true); $got_json['pay_url'] = url_rel("pay.php"); - $got_json['exec_url'] = url_rel("execute.php") . "?H_contract=" . $got_json->H_contract; + $got_json['exec_url'] = url_rel("execute.php") . "?H_contract=" . $got_json["H_contract"]; $_SESSION['H_contract'] = $got_json["H_contract"]; echo json_encode ($got_json, JSON_PRETTY_PRINT); }