Author: juiceman
Date: 2007-05-14 05:54:05 +0000 (Mon, 14 May 2007)
New Revision: 13245
Modified:
trunk/freenet/src/freenet/clients/http/QueueToadlet.java
Log:
Readability
Modified: trunk/freenet/src/freenet/clients/http/QueueToadlet.java
===================================================================
--- trunk/freenet/src/freenet/clients/http/QueueToadlet.java 2007-05-14
03:56:39 UTC (rev 13244)
+++ trunk/freenet/src/freenet/clients/http/QueueToadlet.java 2007-05-14
05:54:05 UTC (rev 13245)
@@ -795,7 +795,7 @@
private HTMLNode createPanicBox(PageMaker pageMaker, ToadletContext
ctx) {
HTMLNode panicBox = pageMaker.getInfobox("infobox-alert",
L10n.getString("QueueToadlet.panicButton"));
HTMLNode panicForm =
ctx.addFormChild(pageMaker.getContentNode(panicBox), "/queue/",
"queuePanicForm");
- panicForm.addChild("#",
L10n.getString("QueueToadlet.panicButtonConfirmation"));
+ panicForm.addChild("#",
(L10n.getString("QueueToadlet.panicButtonConfirmation") + " "));
panicForm.addChild("input", new String[] { "type", "name",
"value" }, new String[] { "submit", "remove_AllRequests",
L10n.getString("QueueToadlet.delete") });
return panicBox;
}