summaryrefslogtreecommitdiffstats
path: root/src/web/web.vala
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/web.vala')
-rw-r--r--src/web/web.vala4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/web/web.vala b/src/web/web.vala
index 28c5d87..3dcb9aa 100644
--- a/src/web/web.vala
+++ b/src/web/web.vala
@@ -963,9 +963,13 @@ public class WebServer {
db.cashbox_add(type == "user" ? session.user : -3, amount, timestamp);
if(error) {
+ template.replace("TYPE", type);
+ template.replace("AMOUNT", amount.to_string());
template.replace("NEW.OK", "none");
template.replace("NEW.FAIL", "block");
} else {
+ template.replace("TYPE", "");
+ template.replace("AMOUNT", "");
template.replace("NEW.OK", "block");
template.replace("NEW.FAIL", "none");
}