summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcello Stanisci <marcello.stanisci@inria.fr>2015-11-17 17:33:16 +0100
committerMarcello Stanisci <marcello.stanisci@inria.fr>2015-11-17 17:33:16 +0100
commited9ac718af37c32e259e58d9e1045fc980c081bd (patch)
treee5a0b6309994d68217945ce15f1a17f7b088b496
parent965cefde1f05541ac113ad37bc798d1e8f115293 (diff)
downloadmerchant-ed9ac718af37c32e259e58d9e1045fc980c081bd.tar.gz
merchant-ed9ac718af37c32e259e58d9e1045fc980c081bd.tar.bz2
merchant-ed9ac718af37c32e259e58d9e1045fc980c081bd.zip
adding fullfillment message
-rw-r--r--src/frontend/pay.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frontend/pay.php b/src/frontend/pay.php
index 946cb160..3b49c01d 100644
--- a/src/frontend/pay.php
+++ b/src/frontend/pay.php
@@ -92,8 +92,8 @@ if ($status_code != 200)
}
else
{
- echo $resp->body->toString ();
- //echo "Payment succeeded!\n";
+ header("Content-Type", "text/html");
+ echo '<html><title>GNU Taler payment</title><body>Payment succeeded!</body></html>\n';
}
?>