From e020a26adcb2e08369d864d7d62bbef1316bf7d0 Mon Sep 17 00:00:00 2001 From: Sebastian Reichel Date: Sat, 15 Jun 2013 23:32:01 +0200 Subject: fix last commit --- src/web/web.vala | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/web/web.vala') diff --git a/src/web/web.vala b/src/web/web.vala index 3dcb9aa..1ff8acf 100644 --- a/src/web/web.vala +++ b/src/web/web.vala @@ -963,13 +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("TYPE", ""); + template.replace("AMOUNT", ""); template.replace("NEW.OK", "none"); template.replace("NEW.FAIL", "block"); } else { - template.replace("TYPE", ""); - template.replace("AMOUNT", ""); + template.replace("TYPE", type); + template.replace("AMOUNT", amount.to_string()); template.replace("NEW.OK", "block"); template.replace("NEW.FAIL", "none"); } -- cgit v1.2.3