diff options
author | imoore76 <imoore76@yahoo.com> | 2015-08-04 01:00:41 -0400 |
---|---|---|
committer | imoore76 <imoore76@yahoo.com> | 2015-08-04 01:00:41 -0400 |
commit | a87733eb58ba53a75870c1e01d498cb14f116a28 (patch) | |
tree | d5544e9db722870b9994249835f326cc987cf850 /js | |
parent | 956c1c3a6b3f562ab40e654006fa35b8169d7a06 (diff) | |
parent | 8a487b95c5ce11e2d31ed0611c138870966a6d9b (diff) | |
download | phpvirtualbox-a87733eb58ba53a75870c1e01d498cb14f116a28.zip phpvirtualbox-a87733eb58ba53a75870c1e01d498cb14f116a28.tar.gz phpvirtualbox-a87733eb58ba53a75870c1e01d498cb14f116a28.tar.bz2 |
Merge pull request #2 from ngpitt/master
Fixed the link to rdp.php
Diffstat (limited to 'js')
-rw-r--r-- | js/phpvirtualbox.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/phpvirtualbox.js b/js/phpvirtualbox.js index c6628ab..8837dc7 100644 --- a/js/phpvirtualbox.js +++ b/js/phpvirtualbox.js @@ -923,7 +923,7 @@ var vboxVMDetailsSections = { // RDP } else if(d['VRDEServer']['VRDEExtPack'].indexOf("VNC") == -1) { - rowStr = " <a href='rdp.php?host=" + chost + '&port=' + d['VRDEServerInfo']['port'] + "&id=" + d['id'] + "&vm=" + encodeURIComponent(d['name']) + "'>" + d['VRDEServerInfo']['port'] + "</a>"; + rowStr = " <a href='" + vboxEndpointConfig.rdpGen + "?host=" + chost + '&port=' + d['VRDEServerInfo']['port'] + "&id=" + d['id'] + "&vm=" + encodeURIComponent(d['name']) + "'>" + d['VRDEServerInfo']['port'] + "</a>"; rowStr += ' <img src="images/vbox/blank.gif" style="vspace:0px;hspace:0px;height2px;width:10px;" /> (' + chost + ':' + d['VRDEServerInfo']['port'] + ')'; // VNC } else { |