View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0006634 | mantisbt | filters | public | 2006-01-25 09:13 | 2006-02-04 05:44 |
| Reporter | visiware | Assigned To | vboctor | ||
| Priority | normal | Severity | feature | Reproducibility | always |
| Status | closed | Resolution | fixed | ||
| Product Version | 1.0.0rc5 | ||||
| Fixed in Version | 1.0.0 | ||||
| Summary | 0006634: Filter does not work with profiles | ||||
| Description | in 1.0.0rc5 Filter does has no effects with profiles | ||||
| Steps To Reproduce | on this mantis (bugs.mantisbt.org) | ||||
| Tags | No tags attached. | ||||
|
The following change seems to fix it: core/filter_api.php line 481: current: if ( ( META_FILTER_ANY == $t_filter_member ) || ( is_numeric( $t_filter_member ) ) ) { fixed: if ( ( META_FILTER_ANY == $t_filter_member ) || ( !is_numeric( $t_filter_member ) ) ) { added ! before is_numeric. |
|
|
The right fix is: if ( ( META_FILTER_ANY == $t_filter_member ) && ( is_numeric( $t_filter_member ) ) ) { |
|