close anchors

This commit is contained in:
zzz
2009-07-18 04:06:12 +00:00
parent 895490df3d
commit 029ac71e58
2 changed files with 2 additions and 2 deletions

View File

@ -458,7 +458,7 @@ public class UPnP extends ControlPoint implements DeviceChangeListener, EventLis
/** warning - slow */
public String renderStatusHTML() {
final StringBuilder sb = new StringBuilder();
sb.append("<a name=\"upnp\"><b>UPnP Status:</b><br />");
sb.append("<a name=\"upnp\"></a><b>UPnP Status:</b><br />");
if(isDisabled) {
sb.append("UPnP has been disabled; Do you have more than one UPnP Internet Gateway Device on your LAN ?");

View File

@ -157,7 +157,7 @@ public class UPnPManager {
public String renderStatusHTML() {
if (!_isRunning)
return "<a name=\"upnp\"><b>UPnP is not enabled</b>\n";
return "<a name=\"upnp\"></a><b>UPnP is not enabled</b>\n";
return _upnp.renderStatusHTML();
}
}