summaryrefslogtreecommitdiff
path: root/src/frontend/pay.php
diff options
context:
space:
mode:
authorMarcello Stanisci <marcello.stanisci@inria.fr>2015-11-18 11:21:40 +0100
committerMarcello Stanisci <marcello.stanisci@inria.fr>2015-11-18 11:21:40 +0100
commite142f344f8159c737425692f878e7ee1231477cd (patch)
treee247b1479540cd8c0700a13255e4f85e0ceca061 /src/frontend/pay.php
parent20b597e91802a3a6b925eabd4b236069fe706d8b (diff)
downloadmerchant-e142f344f8159c737425692f878e7ee1231477cd.tar.gz
merchant-e142f344f8159c737425692f878e7ee1231477cd.tar.bz2
merchant-e142f344f8159c737425692f878e7ee1231477cd.zip
setting a longer fullfillment page (the link inside not shown)
Diffstat (limited to 'src/frontend/pay.php')
-rw-r--r--src/frontend/pay.php10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/frontend/pay.php b/src/frontend/pay.php
index 3b49c01d..d13bb6d5 100644
--- a/src/frontend/pay.php
+++ b/src/frontend/pay.php
@@ -92,8 +92,14 @@ if ($status_code != 200)
}
else
{
- header("Content-Type", "text/html");
- echo '<html><title>GNU Taler payment</title><body>Payment succeeded!</body></html>\n';
+ /*$resp_page = "<html><title>GNU Taler payment</title>"
+ . "<body>Payment succeeded! Go to <a href=\"http://"
+ . $_SERVER["SERVER_NAME"] . "\">our homepage</a></body></html>";
+ header("Content-Type", "text/html");*/
+ $resp_page = "<html><title>GNU Taler payment</title>"
+ . "<body>Payment succeeded!</body></html>";
+
+ echo $resp_page;
}
?>