commit | b9a346adbcb4df5bc00cfd2dd04744f0aaf0f6e8 | [log] [tgz] |
---|---|---|
author | Valentin Pavlov Valchev <vvalchev@apache.org> | Wed Jul 11 08:12:14 2012 +0000 |
committer | Valentin Pavlov Valchev <vvalchev@apache.org> | Wed Jul 11 08:12:14 2012 +0000 |
tree | fcc80f2f07e68393346440220ce386c4a164405d | |
parent | c81d41ea9ff299a7da05895b9a40daaa9cd1c132 [diff] |
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>'; }