summaryrefslogtreecommitdiff
path: root/src/frontend/pay.php
diff options
context:
space:
mode:
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;
}
?>