diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-07-06 10:22:24 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-07-06 10:22:24 +0200 |
commit | b94e5a3a4a3088a96db7166c244721d230845231 (patch) | |
tree | 0a853e637c7ba56863900e8ddc9d23ff21126de1 | |
parent | 52d608c670c5c485cfe1139c40ec06d8ef460a26 (diff) | |
download | uxp-b94e5a3a4a3088a96db7166c244721d230845231.tar.gz |
Fix redirector paths
This resolves #602.
-rw-r--r-- | application/palemoon/components/about/AboutRedirector.cpp | 7 | ||||
-rw-r--r-- | toolkit/content/jar.mn | 2 |
2 files changed, 2 insertions, 7 deletions
diff --git a/application/palemoon/components/about/AboutRedirector.cpp b/application/palemoon/components/about/AboutRedirector.cpp index 508202c7d5..fbcad6094a 100644 --- a/application/palemoon/components/about/AboutRedirector.cpp +++ b/application/palemoon/components/about/AboutRedirector.cpp @@ -70,12 +70,7 @@ static RedirEntry kRedirMap[] = { nsIAboutModule::ALLOW_SCRIPT }, { - "rights", -#ifdef MOZ_OFFICIAL_BRANDING - "chrome://global/content/aboutRights.xhtml", -#else - "chrome://global/content/aboutRights-unbranded.xhtml", -#endif + "rights", "chrome://global/content/aboutRights.xhtml", nsIAboutModule::URI_SAFE_FOR_UNTRUSTED_CONTENT | nsIAboutModule::MAKE_LINKABLE | nsIAboutModule::ALLOW_SCRIPT diff --git a/toolkit/content/jar.mn b/toolkit/content/jar.mn index 0c0f9494a0..e1d432cb34 100644 --- a/toolkit/content/jar.mn +++ b/toolkit/content/jar.mn @@ -12,7 +12,7 @@ toolkit.jar: content/global/about.xhtml content/global/aboutAbout.js content/global/aboutAbout.xhtml -#ifdef MC_OFFICIAL +#ifdef MOZ_OFFICIAL_BRANDING * content/global/aboutRights.xhtml #else * content/global/aboutRights.xhtml (aboutRights-unbranded.xhtml) |