View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0005572 | mantisbt | filters | public | 2005-05-06 05:50 | 2005-05-31 11:33 |
| Reporter | robsmith | Assigned To | thraxisp | ||
| Priority | normal | Severity | minor | Reproducibility | always |
| Status | closed | Resolution | fixed | ||
| Product Version | 1.0.0a2 | ||||
| Fixed in Version | 1.0.0a3 | ||||
| Summary | 0005572: +/- 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. | ||||
| Tags | No tags attached. | ||||
|
Should be fixed by the change for 0005569. If not, please reopen the issue. |
|
|
The problem is with the SetCookie() javascript function in javascript/common.js . 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(). |
|
|
Fixed in CVS. javascript/common.js -> 1.7 |
|
|
MantisBT: master 45c514bd 2005-05-10 08:28 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 | ||