Author: batosai
Date: 2008-08-14 17:35:10 +0000 (Thu, 14 Aug 2008)
New Revision: 21855
Modified:
trunk/apps/WoT/src/plugins/WoT/WebInterface.java
Log:
Doh again
Modified: trunk/apps/WoT/src/plugins/WoT/WebInterface.java
===================================================================
--- trunk/apps/WoT/src/plugins/WoT/WebInterface.java 2008-08-14 17:32:27 UTC
(rev 21854)
+++ trunk/apps/WoT/src/plugins/WoT/WebInterface.java 2008-08-14 17:35:10 UTC
(rev 21855)
@@ -176,10 +176,10 @@
while(ownIdentities.hasNext()) {
OwnIdentity ownIdentity = ownIdentities.next();
if(ownIdentity == treeOwner) {
- selectBox.addChild("option", new String
[] {"value", "selected"}, new String []
{ownIdentity.getRequestURI().toString(), "selected"},
ownIdentity.getProp("nickName"));
+ selectBox.addChild("option", new String
[] {"value", "selected"}, new String []
{ownIdentity.getRequestURI().toString(), "selected"},
ownIdentity.getNickName());
}
else {
- selectBox.addChild("option", "value",
ownIdentity.getRequestURI().toString(), ownIdentity.getProp("nickName"));
+ selectBox.addChild("option", "value",
ownIdentity.getRequestURI().toString(), ownIdentity.getNickName());
}
}
selectForm.addChild("input", new String[] { "type",
"name", "value" }, new String[] { "submit", "select", "View this identity's Web
of Trust" });