Bug 431713: bump EULA version, and require EULA acceptance for Linux for Firefox 3, patch by mconnor@mozilla.com, r=me, a=schrep

This commit is contained in:
gavin%gavinsharp.com 2008-05-05 00:53:42 +00:00
Родитель 3c3eeaecd9
Коммит 2093cc6cfa
1 изменённых файлов: 9 добавлений и 3 удалений

Просмотреть файл

@ -647,11 +647,17 @@ pref("browser.safebrowsing.malware.reportURL", "http://safebrowsing.clients.goog
#endif #endif
// defaults to true // defaults to true on Windows and Mac, because the installer shows this
pref("browser.EULA.2.accepted", true); #ifdef XP_MACOSX
pref("browser.EULA.3.accepted", true);
#elifdef XP_WIN
pref("browser.EULA.3.accepted", true);
#else
pref("browser.EULA.3.accepted", false);
#endif
// if we rev the EULA again, we should bump this so users agree to the new EULA // if we rev the EULA again, we should bump this so users agree to the new EULA
pref("browser.EULA.version", 2); pref("browser.EULA.version", 3);
pref("browser.sessionstore.enabled", true); pref("browser.sessionstore.enabled", true);
pref("browser.sessionstore.resume_from_crash", true); pref("browser.sessionstore.resume_from_crash", true);