Closed
Bug 107170
Opened 24 years ago
Closed 21 years ago
siconline.pt - cookie fails, site useless because of bad JS
Categories
(Tech Evangelism Graveyard :: Portuguese, defect, P3)
Tech Evangelism Graveyard
Portuguese
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: zeka, Unassigned)
References
()
Details
(Whiteboard: [XBROWSER-JAVASCRIPT][PROPRIETARY-DOM])
it can be the javascript in the page.
http://informacao.siconline.pt/ast/Discussion_Groups/CDA/Message_Index/1,7315,5025_5037-0-0-0,00.html
If we click "Nova Mensagem" on side to post a new message, and then enter the
message info in the new forum, and then click "Enviar Mensagem" to submit it, it
doesn't work. The submit button doesn't submit the form info.
Is it bad javascript or bad js parsing by mozilla ?
![]() |
||
Comment 2•24 years ago
|
||
The problem is this function:
function isCookieEnabled() {
if (document.all) {
if (!navigator.cookieEnabled) {
return false;
}
else return true;
}
else {
setCookie('temp','temp');
var temp = getCookie('temp');
if (!temp) {
return false;
}
else return true;
}
}
In mozilla, document.all is undefined and the page never defines "setCookie" or
"getCookie" -- they have "SetCookie" and "GetCookie". In IE, document.all is
not undefined and that branch is never taken.
Oh, that page completely fails in Netscape 4 for the same reason.
Over to evangelism.
Assignee: rogerl → nitot
Status: UNCONFIRMED → NEW
Component: Javascript Engine → Europe: West
Ever confirmed: true
Product: Browser → Tech Evangelism
QA Contact: pschwartau → caillon
Whiteboard: [XBROWSER-JAVASCRIPT]
Version: other → unspecified
Updated•24 years ago
|
Severity: normal → major
OS: Windows 95 → All
Hardware: PC → All
Summary: somewhy this aint working. → siconline.pt - cookie fails, site useless because of bad JS
Whiteboard: [XBROWSER-JAVASCRIPT] → [XBROWSER-JAVASCRIPT][PROPRIETARY-DOM]
I sent an email to the tecnical responsable of that site/forum regarding that
javascript problem, and gave a pointer to this bug report.
Maybe they'll fix the thing and people using Mozilla or Netscape will be able to
post messages in the forum.
Comment 6•22 years ago
|
||
to default owner
Assignee: nitot → portuguese
Status: ASSIGNED → NEW
QA Contact: z-caillon-obsolete2 → portuguese
Comment 7•22 years ago
|
||
The forums of http://www.siconline.pt are working. I've just posted a message
anonymously.
Marking fixed, feel free to reopen it.
Updated•10 years ago
|
Product: Tech Evangelism → Tech Evangelism Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•