Author: nextgens
Date: 2007-03-09 21:22:34 +0000 (Fri, 09 Mar 2007)
New Revision: 12076

Modified:
   trunk/freenet/src/freenet/clients/http/ConfigToadlet.java
Log:
Fix a typo

Modified: trunk/freenet/src/freenet/clients/http/ConfigToadlet.java
===================================================================
--- trunk/freenet/src/freenet/clients/http/ConfigToadlet.java   2007-03-09 
21:05:27 UTC (rev 12075)
+++ trunk/freenet/src/freenet/clients/http/ConfigToadlet.java   2007-03-09 
21:22:34 UTC (rev 12076)
@@ -135,7 +135,7 @@
                                        HTMLNode configItemNode = 
configGroupUlNode.addChild("li");
                                        configItemNode.addChild("span", new 
String[]{ "class", "title", "style" },
                                                        new String[]{ 
"configshortdesc", "The default for that configuration option is : '" +
-                                                       o[j].getDefault(), 
"cursor: help;" }, o[j].getShortDesc() + '\'');
+                                                       o[j].getDefault() + 
'\'', "cursor: help;" }, o[j].getShortDesc());
                                        HTMLNode configItemValueNode = 
configItemNode.addChild("span", "class", "config");
                                        if(o[j].getValueString() == null){
                                                Logger.error(this, 
sc[i].getPrefix() + configName + "has returned null from config!);");


Reply via email to