aboutsummaryrefslogtreecommitdiff
path: root/www/firefox/files
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2004-10-28 21:37:53 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2004-10-28 21:37:53 +0000
commitb12831f94a1b89940b8ce577b7a9c2cd20a38782 (patch)
treecea5de5a41010fbf6fc6186041233a9897d82deb /www/firefox/files
parentf9ceeb4839942474e3d633148cfacdda6edce32d (diff)
downloadports-b12831f94a1b89940b8ce577b7a9c2cd20a38782.tar.gz
ports-b12831f94a1b89940b8ce577b7a9c2cd20a38782.zip
Notes
Diffstat (limited to 'www/firefox/files')
-rw-r--r--www/firefox/files/patch-toolkit_mozapps_extensions_src_nsExtensionManager.js.in17
1 files changed, 0 insertions, 17 deletions
diff --git a/www/firefox/files/patch-toolkit_mozapps_extensions_src_nsExtensionManager.js.in b/www/firefox/files/patch-toolkit_mozapps_extensions_src_nsExtensionManager.js.in
deleted file mode 100644
index feffd2c6344f..000000000000
--- a/www/firefox/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);
- }