https://issues.apache.org/ooo/show_bug.cgi?id=119357
Priority: P3
Bug ID: 119357
Assignee: [email protected]
Summary: Sometimes no download link when JavaScript enabled in
Firefox 12
Severity: normal
Issue Type: DEFECT
Classification: Infrastructure
OS: All
Reporter: [email protected]
Hardware: PC
Status: UNCONFIRMED
Version: version58
Component: Website general issues
Product: www
At http://www.openoffice.org/download/ there is sometimes no download link for
the application in Firefox 12 when Javascript is enabled. The JS error console
shows the following:
Error: language is not defined
Source File: http://www.openoffice.org/download/download_new_dl.js
Line: 276
"Sometimes" means: when using one user account under Windows XP. Other user
accounts on the same machine show the link. I don't know what the difference
is. Disabling all add-ons did not help.
Whatever the reason, changing
if (language == "" || language == "null" || language == "en") language =
"en-US";
to
if (typeof language == "undefined" || !language || language == "en") language =
"en-US";
should fix it.
--
You are receiving this mail because:
You are the assignee for the bug.