From 46dd85120b48c942c00f61775c4c840e956d02df Mon Sep 17 00:00:00 2001 From: =?utf8?q?Felix=20D=C3=B6rre?= Date: Sun, 15 Mar 2015 11:01:32 +0100 Subject: [PATCH] Fix: followups for sprintf syntax --- src/org/cacert/gigi/pages/admin/TTPAdminPage.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/cacert/gigi/pages/admin/TTPAdminPage.java b/src/org/cacert/gigi/pages/admin/TTPAdminPage.java index 2f2c25d2..5dbc6409 100644 --- a/src/org/cacert/gigi/pages/admin/TTPAdminPage.java +++ b/src/org/cacert/gigi/pages/admin/TTPAdminPage.java @@ -47,7 +47,7 @@ public class TTPAdminPage extends Page { int id = Integer.parseInt(path.substring(1 + PATH.length())); User u = User.getById(id); if (u == null || !u.isInGroup(TTP_APPLICANT)) { - SprintfCommand command = new SprintfCommand("The TTP-request is not available anymore. You might want to go {0}back{1}.", Arrays.asList("!\"", "!\"")); + SprintfCommand command = new SprintfCommand("The TTP-request is not available anymore. You might want to go {0}back{1}.", Arrays.asList("!'", "!'")); req.setAttribute(PageNotFound.MESSAGE_ATTRIBUTE, command); resp.sendError(404); return; -- 2.39.2