summaryrefslogtreecommitdiffstats
path: root/src/web.vala
diff options
context:
space:
mode:
authorSebastian Reichel <sre@ring0.de>2012-10-05 19:50:07 +0200
committerSebastian Reichel <sre@ring0.de>2012-10-05 19:50:07 +0200
commit8a54275dfb94c5e21d09ad1249f3ac7bc0e6f806 (patch)
tree598bd95ad9708e2f7566b7e7b079acaa3da42879 /src/web.vala
parent5499227ca108f8467caf7975a4aba83d882a848a (diff)
downloadserial-barcode-scanner-8a54275dfb94c5e21d09ad1249f3ac7bc0e6f806.tar.bz2
show € symbol after invoice sum
Diffstat (limited to 'src/web.vala')
-rw-r--r--src/web.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web.vala b/src/web.vala
index e90934a..84e5da2 100644
--- a/src/web.vala
+++ b/src/web.vala
@@ -306,7 +306,7 @@ public class WebServer {
}
t.replace("DATA", table);
- t.replace("SUM", @"$sum");
+ t.replace("SUM", @"$sum €");
msg.set_response("text/html", Soup.MemoryUse.COPY, t.data);
} catch(TemplateError e) {