From 198875f632a54f6101be682bd45d64ef44e42eb4 Mon Sep 17 00:00:00 2001 From: mattpass Date: Mon, 22 Jun 2020 19:09:15 +0100 Subject: [PATCH] Slash prefixes needed on URLs prefixed by iceLoc --- assets/js/icecoder.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/assets/js/icecoder.js b/assets/js/icecoder.js index 9841680..51a167c 100644 --- a/assets/js/icecoder.js +++ b/assets/js/icecoder.js @@ -3368,30 +3368,30 @@ var ICEcoder = { // Show the properties screen propertiesScreen: function(fileName) { - get('mediaContainer').innerHTML = ''; + get('mediaContainer').innerHTML = ''; this.showHide('show',get('blackMask')); }, // Show the auto-logout warning screen autoLogoutWarningScreen: function() { - get('mediaContainer').innerHTML = ''; + get('mediaContainer').innerHTML = ''; this.showHide('show',get('blackMask')); }, // Show the plugins manager pluginsManager: function() { - get('mediaContainer').innerHTML = ''; + get('mediaContainer').innerHTML = ''; this.showHide('show',get('blackMask')); }, // Go to localhost root goLocalhostRoot: function() { - this.filesFrame.contentWindow.frames['fileControl'].location.href = iceLoc+"lib/go-localhost-root.php"; + this.filesFrame.contentWindow.frames['fileControl'].location.href = iceLoc+"/lib/go-localhost-root.php"; }, // Show the FTP manager ftpManager: function() { - get('mediaContainer').innerHTML = ''; + get('mediaContainer').innerHTML = ''; this.showHide('show',get('blackMask')); },