Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: mobile/android/app/mobile.js

Issue 29346916: Issue 3220 - FAQ and Privacy Policy links redirect to English site only (Closed)
Patch Set: Applying changes from code review Created Nov. 2, 2016, 10:08 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: mobile/android/app/mobile.js
===================================================================
--- a/mobile/android/app/mobile.js
+++ b/mobile/android/app/mobile.js
@@ -470,28 +470,30 @@ pref("plugin.default.state", 1);
// product URLs
// The breakpad report server to link to in about:crashes
pref("breakpad.reportURL", "https://crash-stats.mozilla.com/report/index/");
// Changed in Adblock Browser, see: https://issues.adblockplus.org/ticket/2930.
pref("app.support.baseURL", "https://adblockplus.org/redirect?link=adblock_browser_android_support&lang=%LOCALE%");
// Used to submit data to input from about:feedback, changed in Adblock Browser,
// see: https://issues.adblockplus.org/ticket/2930.
pref("app.feedback.postURL", "https://adblockbrowser.org/submit-feedback/");
-pref("app.privacyURL", "https://www.mozilla.org/privacy/firefox/");
-pref("app.creditsURL", "http://www.mozilla.org/credits/");
+// Changed URLs. See https://issues.adblockplus.org/ticket/3220
+pref("app.privacyURL", "https://adblockplus.org/redirect?link=privacy&lang=%LOCALE%");
+pref("app.creditsURL", "https://adblockplus.org/redirect?link=contributors&lang=%LOCALE%");
pref("app.channelURL", "http://www.mozilla.org/%LOCALE%/firefox/channel/");
#if MOZ_UPDATE_CHANNEL == aurora
pref("app.releaseNotesURL", "http://www.mozilla.com/%LOCALE%/mobile/%VERSION%/auroranotes/");
#elif MOZ_UPDATE_CHANNEL == beta
pref("app.releaseNotesURL", "http://www.mozilla.com/%LOCALE%/mobile/%VERSION%beta/releasenotes/");
#else
pref("app.releaseNotesURL", "http://www.mozilla.com/%LOCALE%/mobile/%VERSION%/releasenotes/");
#endif
-pref("app.faqURL", "https://support.mozilla.org/1/mobile/%VERSION%/%OS%/%LOCALE%/faq");
+// Changed URL. See https://issues.adblockplus.org/ticket/3220
+pref("app.faqURL", "https://adblockplus.org/redirect?link=adblock_browser_android_faq&lang=%LOCALE%");
// Name of alternate about: page for certificate errors (when undefined, defaults to about:neterror)
pref("security.alternate_certificate_error_page", "certerror");
pref("security.warn_viewing_mixed", false); // Warning is disabled. See Bug 616712.
// Block insecure active content on https pages
pref("security.mixed_content.block_active_content", true);

Powered by Google App Engine
This is Rietveld