View Issue Details

IDProjectCategoryView StatusLast Update
0005572mantisbtfilterspublic2005-05-31 11:33
Reporterrobsmith Assigned Tothraxisp  
PrioritynormalSeverityminorReproducibilityalways
Status closedResolutionfixed 
Product Version1.0.0a2 
Fixed in Version1.0.0a3 
Summary0005572: +/- button to show/hide filters doesn't work with IE5.5
Description

On view_all_bug_page, the +/- button to show/hide the filters box works with Firefox but not with Internet Explorer 5.5 -- clickig the button has no effect.

TagsNo tags attached.

Relationships

related to 0005569 closedthraxisp +/- button on Filter does not remember. 

Activities

thraxisp

thraxisp

2005-05-10 08:30

reporter   ~0010063

Should be fixed by the change for 0005569. If not, please reopen the issue.

robsmith

robsmith

2005-05-10 11:09

reporter   ~0010065

The problem is with the SetCookie() javascript function in javascript/common.js .
The function sets the cookie with:

document.cookie = t_cookie_name + "=" + p_value + "; expires=" + t_expires + ";";

The expiry date should be formatted as a UTC date, i.e.:

document.cookie = t_cookie_name + "=" + p_value + "; expires=" + t_expires.toUTCString() + ";";

Without this, IE5.5 just deletes the cookie. Mozilla browsers seem to be more lenient.

The SetCookie() function is only called by ToggleDiv().

thraxisp

thraxisp

2005-05-10 13:57

reporter   ~0010068

Fixed in CVS.

javascript/common.js -> 1.7

Related Changesets

MantisBT: master 45c514bd

2005-05-10 08:28

thraxisp


Details Diff
fix for 0005569: +/- button on Filter does not remember.
probably also fixes 0005572: +/- button to show/hide filters doesn't work with IE5.5
- thanks to astax

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@3513 <a class="text" href="/?p=mantisbt.git;a=object;h=f5dc347c">f5dc347c</a>-c33d-0410-90a0-b07cc1902cb9
Affected Issues
0005572
mod - core/collapse_api.php Diff File