diff options
author | Florian Dold <florian.dold@gmail.com> | 2020-08-07 00:31:54 +0530 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2020-08-07 00:31:54 +0530 |
commit | b791a14c6118f4cdb1cf0257ab499324d3859e6d (patch) | |
tree | 9bba328d67e2894c2c54a735ebd99a24d3ccf39d /src/backend/taler-merchant-httpd_qr.c | |
parent | 5698d609efd715668e24c22e20fed9d952723852 (diff) |
pass status URLs in template instead of using JS, fix remaining #6457 FIXMEs
Diffstat (limited to 'src/backend/taler-merchant-httpd_qr.c')
-rw-r--r-- | src/backend/taler-merchant-httpd_qr.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/backend/taler-merchant-httpd_qr.c b/src/backend/taler-merchant-httpd_qr.c index ddb73167..1774f75b 100644 --- a/src/backend/taler-merchant-httpd_qr.c +++ b/src/backend/taler-merchant-httpd_qr.c @@ -73,11 +73,11 @@ TMH_create_qrcode (const char *uri) } QRinput_free (qri); GNUNET_buffer_write_fstr (&buf, - "<svg width='100mm' height='100mm' viewBox='0 0 %u %u' " - "version='1.1' xmlns='http://www.w3.org/2000/svg' " - "style='shape-rendering: crispedges;'>\n", - qrc->width, - qrc->width); + "<svg width='100mm' height='100mm' viewBox='0 0 %u %u' " + "version='1.1' xmlns='http://www.w3.org/2000/svg' " + "style='shape-rendering: crispedges;'>\n", + qrc->width, + qrc->width); for (unsigned int y = 0; y<qrc->width; y++) { for (unsigned int x = 0; x<qrc->width; x++) |