Fixed FELIX-3589 The service id link for UPnP devices doesn't work
https://issues.apache.org/jira/browse/FELIX-3589

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1360051 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/webconsole-plugins/upnp/src/main/resources/res/upnp.js b/webconsole-plugins/upnp/src/main/resources/res/upnp.js
index 9c3bdd1..a4e294f 100644
--- a/webconsole-plugins/upnp/src/main/resources/res/upnp.js
+++ b/webconsole-plugins/upnp/src/main/resources/res/upnp.js
@@ -154,7 +154,7 @@
 		var xvalue = _val(device.props[key]);

 		if ('objectClass' == key) continue;

 		if ('service.id'  == key) {

-			xvalue = '<a href="' + appRoot + '/services/' + key + '">' + xvalue + '</a>';

+			xvalue = '<a href="' + appRoot + '/services/' + xvalue + '">' + xvalue + '</a>';

 		}

 		table += '<tr><td class="ui-priority-primary">' + key + '</td><td>' + xvalue + '</td></tr>';

 	}