diff options
author | Moonchild <mcwerewolf@gmail.com> | 2018-07-20 19:58:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-20 19:58:25 +0200 |
commit | edc21c97254194d89b3065ae5af8ce672cda4ceb (patch) | |
tree | d6e25a32531d3c23d8245b18b213e6fdf71af296 /application | |
parent | f9265e9565ecbafd3f787b53503519ea7ee0aa15 (diff) | |
parent | 3ac6438dd3e47f8aac400fe171947c6be1c60cad (diff) | |
download | UXP-edc21c97254194d89b3065ae5af8ce672cda4ceb.tar UXP-edc21c97254194d89b3065ae5af8ce672cda4ceb.tar.gz UXP-edc21c97254194d89b3065ae5af8ce672cda4ceb.tar.lz UXP-edc21c97254194d89b3065ae5af8ce672cda4ceb.tar.xz UXP-edc21c97254194d89b3065ae5af8ce672cda4ceb.zip |
Merge pull request #655 from trav90/updater-enable
[PALEMOON] Enable update prefs in Official branding for Linux
Diffstat (limited to 'application')
-rw-r--r-- | application/palemoon/branding/official/pref/palemoon-branding.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/application/palemoon/branding/official/pref/palemoon-branding.js b/application/palemoon/branding/official/pref/palemoon-branding.js index 8e8703fb7..02e75b6ce 100644 --- a/application/palemoon/branding/official/pref/palemoon-branding.js +++ b/application/palemoon/branding/official/pref/palemoon-branding.js @@ -12,7 +12,7 @@ pref("general.useragent.compatMode.gecko", true); pref("general.useragent.compatMode.firefox", true);
// ========================= updates ========================
-#if defined(XP_WIN)
+#if defined(XP_WIN) || defined(XP_LINUX)
// Updates enabled
pref("app.update.enabled", true);
pref("app.update.cert.checkAttributes", true);
@@ -29,7 +29,7 @@ pref("app.update.url.manual", "http://www.palemoon.org/"); // supplied in the "An update is available" page of the update wizard.
pref("app.update.url.details", "http://www.palemoon.org/releasenotes.shtml");
#else
-// Updates disabled (Linux, etc.)
+// Updates disabled (Mac, etc.)
pref("app.update.enabled", false);
pref("app.update.url", "");
#endif
|