diff options
author | marcus <marcus@FreeBSD.org> | 2004-10-28 21:37:53 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2004-10-28 21:37:53 +0000 |
commit | 205fe0bf7e50b0faa0007e2f517618810e27fb7c (patch) | |
tree | 73471b82cd7409882f54ff22d1127594c691efec /www/firefox10/files | |
parent | 34be4fa8cc6209860477c3a005f7ff2106651fcf (diff) | |
download | FreeBSD-ports-205fe0bf7e50b0faa0007e2f517618810e27fb7c.zip FreeBSD-ports-205fe0bf7e50b0faa0007e2f517618810e27fb7c.tar.gz |
Update to 1.0.r (aka 1.0 Release Candidate 1). So far, the release notes have
not been published, but see
http://www.squarefree.com/burningedge/releases/1.0.html for a list of changes.
Diffstat (limited to 'www/firefox10/files')
-rw-r--r-- | www/firefox10/files/patch-toolkit_mozapps_extensions_src_nsExtensionManager.js.in | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/www/firefox10/files/patch-toolkit_mozapps_extensions_src_nsExtensionManager.js.in b/www/firefox10/files/patch-toolkit_mozapps_extensions_src_nsExtensionManager.js.in deleted file mode 100644 index feffd2c..0000000 --- a/www/firefox10/files/patch-toolkit_mozapps_extensions_src_nsExtensionManager.js.in +++ /dev/null @@ -1,17 +0,0 @@ ---- toolkit/mozapps/extensions/src/nsExtensionManager.js.in.orig Tue Jul 27 15:35:12 2004 -+++ toolkit/mozapps/extensions/src/nsExtensionManager.js.in Tue Jul 27 15:36:02 2004 -@@ -1568,9 +1568,14 @@ - - _checkForGlobalInstalls: function (aPath, aItemType) - { -+ var fPrefix = "file://"; - // First see if the path supplied is a file path - var file = Components.classes["@mozilla.org/file/local;1"] - .createInstance(Components.interfaces.nsILocalFile); -+ if (aPath.substr(0, fPrefix.length) == fPrefix) { -+ // Strip out the file:// prefix if it exists -+ aPath = aPath.substr(fPrefix.length, aPath.length); -+ } - try { - file.initWithPath(aPath); - } |