View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0022555 | mantisbt | filters | public | 2017-03-21 03:32 | 2017-04-01 00:13 |
Reporter | vboctor | Assigned To | cproensa | ||
Priority | normal | Severity | minor | Reproducibility | always |
Status | closed | Resolution | fixed | ||
Product Version | 2.2.2 | ||||
Target Version | 2.2.3 | Fixed in Version | 2.2.3 | ||
Summary | 0022555: Regression in custom field sorting | ||||
Description | Due some recent change, the custom field sorting doesn't work in some cases. By doesn't work I mean that clicking on the custom field header on View Issues page has no effect. This didn't always happen, but after some investigations, I figured out that this happens in the case where a custom field is name "Some custom field" but references in View Issues columns list (from manage columns) as 'some custom field' (different case). The logic that shows the field is case insensitive, but the logic for sorting by the field is case sensitive. If the custom field name in the Manage Columns configure is changed to use the correct case, the sorting works again. Could this be introduced by 0017367 ? | ||||
Tags | No tags attached. | ||||
Seems to be the issue which is mentioned at 0022392:0055731 |
|
I have provided a fix in 0022392 however, i don't think it has to do with case sensitiveness... that may be another issue? |
|
@cproensa I'm pretty sure there is a case sensitivity issue since I was able to reproduce it, can you please test before / after your fix, so see if this issue is also fixed. |
|
right, this issue is different than 0022392 I think that a proper fix would be to use custom field numeric ids in the parameters name for sorting and filter forms fields, instead of names. |
|
Sounds good as long it doesn't break filters serialized in cookies or saved to db. |
|
@vboctor try this PR: https://github.com/mantisbt/mantisbt/pull/1064 The approach is: when loading the columns from configuration, sanitize those referencing custom fields so that the actual cf names are used in runtime |
|
MantisBT: master-2.2 c612d8da 2017-03-22 20:45:46 Committer: vboctor Details Diff |
Fix lowercase custom field column names Fix column names for custom field columns that may be stored as lowercase in configuration. See issue 0017367 If the system was working fine with lowercase names, then database is case-insensitive, eg: mysql. Fix by forcing a search with current name to get the id, then get the actual name by looking up this id. Fixes: 0022555 |
Affected Issues 0017367, 0022555 |
|
mod - core/bug_api.php | Diff File | ||
mod - core/columns_api.php | Diff File | ||
mod - core/helper_api.php | Diff File |