Author: toad
Date: 2007-09-21 00:18:40 +0000 (Fri, 21 Sep 2007)
New Revision: 15220

Modified:
   trunk/freenet/src/freenet/clients/http/ConnectionsToadlet.java
Log:
trivial fix to disconnecting summary display

Modified: trunk/freenet/src/freenet/clients/http/ConnectionsToadlet.java
===================================================================
--- trunk/freenet/src/freenet/clients/http/ConnectionsToadlet.java      
2007-09-20 22:32:49 UTC (rev 15219)
+++ trunk/freenet/src/freenet/clients/http/ConnectionsToadlet.java      
2007-09-21 00:18:40 UTC (rev 15220)
@@ -311,13 +311,13 @@
                        }
                        if (numberOfConnError > 0) {
                                HTMLNode peerStatsListenOnlyListItem = 
peerStatsList.addChild("li").addChild("span");
-                               peerStatsListenOnlyListItem.addChild("span", 
new String[] { "class", "title", "style" }, new String[] { 
"peer_clock_problem", l10n("connError"), "border-bottom: 1px dotted; cursor: 
help;" }, l10n("connErrorShort"));
+                               peerStatsListenOnlyListItem.addChild("span", 
new String[] { "class", "title", "style" }, new String[] { "peer_conn_error", 
l10n("connError"), "border-bottom: 1px dotted; cursor: help;" }, 
l10n("connErrorShort"));
                                peerStatsListenOnlyListItem.addChild("span", 
":\u00a0" + numberOfConnError);
                        }
                        if (numberOfDisconnecting > 0) {
                                HTMLNode peerStatsListenOnlyListItem = 
peerStatsList.addChild("li").addChild("span");
-                               peerStatsListenOnlyListItem.addChild("span", 
new String[] { "class", "title", "style" }, new String[] { 
"peer_clock_problem", l10n("connError"), "border-bottom: 1px dotted; cursor: 
help;" }, l10n("disconnectingShort"));
-                               peerStatsListenOnlyListItem.addChild("span", 
":\u00a0" + numberOfConnError);
+                               peerStatsListenOnlyListItem.addChild("span", 
new String[] { "class", "title", "style" }, new String[] { 
"peer_disconnecting", l10n("disconnecting"), "border-bottom: 1px dotted; 
cursor: help;" }, l10n("disconnectingShort"));
+                               peerStatsListenOnlyListItem.addChild("span", 
":\u00a0" + numberOfDisconnecting);
                        }

                        // Peer routing backoff reason box


Reply via email to