You can try this. Make the following changes in the
\Providers\HtmlEditorProviders\Fck\fckeditor\editor\dialog\fck_link.fcl_link.js file. It should work on all major browsers. If it doesn't work it will fail safe, i.e. the
Browse Server button will remain hidden.
// Show/Hide the "Browse Server" button.
// Only show 'Browse Server' button if admin rather than using setting in fckconfig.js.
// GetE('divBrowseServer').style.display = FCKConfig.LinkBrowser ? '' : 'none';
GetE('divBrowseServer').style.display = 'none'; // Hide by default.
try {
var parentDoc = (document.parent == undefined) ? document.defaultView : document.parentWindow; // parentWindow is IE only.
parentDoc = parentDoc.parent.parent.document;
if (parentDoc.getElementById('dnn_ControlPanel') != null && parentDoc.getElementById('dnn_ControlPanel') != undefined && parentDoc.getElementById('dnn_ControlPanel').innerHTML != "") {
GetE('divBrowseServer').style.display = ''; // Show if admin.
}
} catch (e) { }
// End Mod.