You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by vv...@apache.org on 2012/07/11 10:12:14 UTC

svn commit: r1360051 - /felix/trunk/webconsole-plugins/upnp/src/main/resources/res/upnp.js

Author: vvalchev
Date: Wed Jul 11 08:12:14 2012
New Revision: 1360051

URL: http://svn.apache.org/viewvc?rev=1360051&view=rev
Log:
Fixed FELIX-3589 The service id link for UPnP devices doesn't work
https://issues.apache.org/jira/browse/FELIX-3589

Modified:
    felix/trunk/webconsole-plugins/upnp/src/main/resources/res/upnp.js

Modified: felix/trunk/webconsole-plugins/upnp/src/main/resources/res/upnp.js
URL: http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/upnp/src/main/resources/res/upnp.js?rev=1360051&r1=1360050&r2=1360051&view=diff
==============================================================================
--- felix/trunk/webconsole-plugins/upnp/src/main/resources/res/upnp.js (original)
+++ felix/trunk/webconsole-plugins/upnp/src/main/resources/res/upnp.js Wed Jul 11 08:12:14 2012
@@ -154,7 +154,7 @@ function renderDevice(device) {
 		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>';
 	}