merchant-frontend-examples

ZZZ: Inactive/Deprecated
Log | Files | Refs

commit 3b91b088a22a5ca48d27617899d072e57d82d714
parent 85395bdf23dd9542f7cb15071c9faab69ac9e259
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date:   Thu, 17 Nov 2016 22:48:01 +0100

http=>https + fix array key

Diffstat:
Mphp/config.php | 2+-
Mphp/generate-contract.php | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/php/config.php b/php/config.php @@ -2,7 +2,7 @@ // This config file is in the public domain. - $BACKEND = "http://backend.demo.taler.net/"; + $BACKEND = "https://backend.demo.taler.net/"; // The currency must match the one used by the backend. $CURRENCY = "KUDOS"; diff --git a/php/generate-contract.php b/php/generate-contract.php @@ -17,7 +17,7 @@ if (200 != $response["status_code"]) { echo build_error($response, "Failed to generate contract", - $response['code']); + $response['status_code']); return; } echo $response["body"];