summaryrefslogtreecommitdiff
path: root/contrib/request_payment.en.must
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-08-19 18:06:13 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-08-19 18:06:13 +0530
commit4711c5e4306a1019bedaee3cf1265396fe242821 (patch)
tree1937c51166d1ee224f6616aad02f852e9db93b24 /contrib/request_payment.en.must
parentb77ef665b0f3876f2c27db2d5a9b154fa1a9ba0d (diff)
downloadmerchant-4711c5e4306a1019bedaee3cf1265396fe242821.tar.gz
merchant-4711c5e4306a1019bedaee3cf1265396fe242821.tar.bz2
merchant-4711c5e4306a1019bedaee3cf1265396fe242821.zip
disable HTML escaping for URLs in mustache templates
Diffstat (limited to 'contrib/request_payment.en.must')
-rw-r--r--contrib/request_payment.en.must2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/request_payment.en.must b/contrib/request_payment.en.must
index e533c81b..d7819059 100644
--- a/contrib/request_payment.en.must
+++ b/contrib/request_payment.en.must
@@ -91,7 +91,7 @@ body {
<body>
<script>
let delayMs = 60000;
- let checkUrl = "{{order_status_url}}&timeout_ms=" + delayMs.toString();
+ let checkUrl = "{{& order_status_url }}&timeout_ms=" + delayMs.toString();
function check() {
let req = new XMLHttpRequest();
req.onreadystatechange = function () {