View Issue Details [ Jump to Notes ] | [ Issue History ] [ Print ] | ||||||||
ID | Project | Category | View Status | Date Submitted | Last Update | ||||
---|---|---|---|---|---|---|---|---|---|
0001275 | v3.0 Release | [All Projects] General | public | 2013-03-04 07:51 | 2013-08-28 11:17 | ||||
Reporter | carlosazevedo | ||||||||
Assigned To | caseydk | ||||||||
Priority | normal | Severity | major | Reproducibility | always | ||||
Status | closed | Resolution | fixed | ||||||
Product Version | |||||||||
Target Version | Fixed in Version | 3.0.0 | |||||||
Summary | 0001275: FIX: When a subfolder is clicked on 'Folder Explorer' it switches to the 'Application' tab | ||||||||
Description | This is due to a decrement that is done on the $tab variable. The fix involves these changes in the file 'cleanup_functions.php' in 'includes'. Two of the changes are cummulative with a previous fix posted by me. - $tab = ($m == 'files') ? $tab-1 : -1; + $temp_tab = ($m == 'files') ? $tab - 1 : -1; - if (($tab >= 0) and ((count($file_types) - 1) > $tab)) { + if (($temp_tab >= 0) and ((count($file_types) - 1) > $temp_tab)) { - $q->addWhere('file_category = ' . (int)$tab); + $q->addWhere('file_category = ' . (int)$temp_tab); } - if (($tab >= 0) and ((count($file_types) - 1) > $tab)) { + if (($temp_tab >= 0) and ((count($file_types) - 1) > $temp_tab)) { - $qv->addWhere('file_category = ' . (int)$tab); + $qv->addWhere('file_category = ' . (int)$temp_tab); } | ||||||||
Tags | No tags attached. | ||||||||
Attached Files |
|
![]() |
|
caseydk (administrator) 2013-03-04 22:51 |
Resolved as described: https://github.com/web2project/web2project/commit/88722d1e54e94d1b6cb1bd6bcd6e46152965a0b4 |
![]() |
|||
Date Modified | Username | Field | Change |
---|---|---|---|
2013-03-04 07:51 | carlosazevedo | New Issue | |
2013-03-04 22:51 | caseydk | Note Added: 0002839 | |
2013-03-04 22:51 | caseydk | Status | new => resolved |
2013-03-04 22:51 | caseydk | Resolution | open => fixed |
2013-03-04 22:51 | caseydk | Assigned To | => caseydk |
2013-08-28 11:14 | caseydk | Fixed in Version | => 3.0.0 |
2013-08-28 11:17 | caseydk | Status | resolved => closed |