summaryrefslogtreecommitdiff
path: root/src/backend/taler-merchant-httpd_get-orders-ID.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/taler-merchant-httpd_get-orders-ID.c')
-rw-r--r--src/backend/taler-merchant-httpd_get-orders-ID.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/taler-merchant-httpd_get-orders-ID.c b/src/backend/taler-merchant-httpd_get-orders-ID.c
index d906b89b..a60b2002 100644
--- a/src/backend/taler-merchant-httpd_get-orders-ID.c
+++ b/src/backend/taler-merchant-httpd_get-orders-ID.c
@@ -552,7 +552,7 @@ create_qrcode (const char *uri)
QRinput_free (qri);
/* FIXME-Dold: generate <img> with inline SVG instead of <pre> here! */
GNUNET_buffer_write_str (&buf,
- "<pre><br><br><br><br><br> ");
+ "<pre><br>\n<br>\n<br>\n<br>\n ");
for (unsigned int y = 0; y<qrc->width; y++)
{
for (unsigned int x = 0; x<qrc->width; x++)
@@ -563,10 +563,10 @@ create_qrcode (const char *uri)
(0 != (qrc->data[off] & 1)) ? "██" : " ");
}
GNUNET_buffer_write_str (&buf,
- "<br> ");
+ "<br> \n ");
}
GNUNET_buffer_write_str (&buf,
- "<br><br><br><br></pre>");
+ "<br>\n<br>\n<br>\n<br>\n</pre>");
QRcode_free (qrc);
return GNUNET_buffer_reap_str (&buf);
}