ok, good to know all is well there.
please be patient with this newbie; I can't get the altered browser.js to take proper effect, by that i mean that once the code has been replaced, users get blank results when entering valid urls also.
-----------------code entered into browser.js, 3.6.8 firefox community edition by frontmotion --------
function loadURI(uri, referrer, postData, allowThirdPartyFixup)
{
// Next section added to stop users from accessing stuff
var uri2 = uri.toLowerCase();
if (uri2.match(/^file:/) ||
uri2.match(/^\//) ||
uri2.match(/^c:/) ||
uri2.match(/^chrome:/) ||
uri2.match(/^resource:/) ||
(!uri2.match(/^about:blank/) &&
uri2.match(/^about:/))) {
uri = "about:blank";
}
{
try {
if (postData === undefined)
postData = null;
var flags = nsIWebNavigation.LOAD_FLAGS_NONE;
if (allowThirdPartyFixup) {
flags = nsIWebNavigation.LOAD_FLAGS_ALLOW_THIRD_PARTY_FIXU P;
}
gBrowser.loadURIWithFlags(uri, flags, referrer, null, postData);
} catch (e) {
}
}
--------------end of code snippet--------------
i've taken the d: drive line out of it but that's the extent of my fiddling about.
i've probably forgotten some important stuff, what else should i have checked?