diff options
author | justdave%syndicomm.com <> | 2003-09-24 17:00:13 +0200 |
---|---|---|
committer | justdave%syndicomm.com <> | 2003-09-24 17:00:13 +0200 |
commit | 8eb58d48cb751d2b2c0e5491f073b54001dfdf38 (patch) | |
tree | 412498af31d58b69ad882450f6f58b149f784ef1 | |
parent | 81cfdde56a0386003f37389177426062e5ebad32 (diff) | |
download | bugzilla-8eb58d48cb751d2b2c0e5491f073b54001dfdf38.tar.gz bugzilla-8eb58d48cb751d2b2c0e5491f073b54001dfdf38.tar.xz |
Bug 152748: Make lack of sidebar support suggest Mozilla instead of Netscape as an upgrade.
Patch by Vlad Dascalu <jocuri@softhome.net>
r= gerv, a= justdave
-rw-r--r-- | template/en/default/index.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/index.html.tmpl b/template/en/default/index.html.tmpl index e1b524d0d..07712a708 100644 --- a/template/en/default/index.html.tmpl +++ b/template/en/default/index.html.tmpl @@ -45,9 +45,9 @@ function addSidebar() { } else { - var rv = window.confirm ("This page is enhanced for use with Netscape 6. " + "Would you like to upgrade now?"); + var rv = window.confirm ("Your browser does not support the sidebar extension. " + "Would you like to upgrade now?"); if (rv) - document.location.href = "http://home.netscape.com/download/index.html"; + document.location.href = "http://www.mozilla.org/binaries.html"; } } //--> |