* netdb.jsp: Fix bad tag causing orange mouseovers

* Merge as -7
This commit is contained in:
zzz
2009-07-11 22:38:39 +00:00
parent 135f8c1be2
commit 429bd0a4e3
3 changed files with 7 additions and 6 deletions

View File

@ -18,7 +18,7 @@ public class RouterVersion {
/** deprecated */
public final static String ID = "Monotone";
public final static String VERSION = CoreVersion.VERSION;
public final static long BUILD = 6;
public final static long BUILD = 7;
/** for example "-test" */
public final static String EXTRA = "";
public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;

View File

@ -1077,7 +1077,7 @@ public class KademliaNetworkDatabaseFacade extends NetworkDatabaseFacade {
String hash = info.getIdentity().getHash().toBase64();
buf.append("<a name=\"").append(hash.substring(0, 6)).append("\" />");
if (isUs) {
buf.append("<a name=\"our-info\" /a><b>Our info: ").append(hash).append("</b><br />\n");
buf.append("<a name=\"our-info\" /><b>Our info: ").append(hash).append("</b><br />\n");
} else {
buf.append("<b>Peer info for:</b> ").append(hash).append("<br />\n");
}