0.19.4 - Custom field filter disappeared after Update
Posted: 16 Jan 2006, 18:54
Hi,
we updated our mantis system from 0.19.2 to 0.19.4 at our company. After that update the custom fields disappeared on the 'view_filters_page.php'.
We use a lot of own fields for various purpose and we heavily filter our issues for those fields. So this was a really bad surprise for a harmless minor version update!
After not finding any conclusion in this forum, I analyzed the old and the new php page. Some lines just moved within the code, only a few new ones were added, they don't seem to make much sense to me, but I am not an involved mantis developer anyway. Example code snippets:
We just copied this page from 0.19.2 into the 0.19.4 environment and everything works fine.
Is there anybody who had the same problem? Is it a bug? We used our old configuration, do we have to add something new to it? Questions over question!
Cheers,
Robert.
we updated our mantis system from 0.19.2 to 0.19.4 at our company. After that update the custom fields disappeared on the 'view_filters_page.php'.
We use a lot of own fields for various purpose and we heavily filter our issues for those fields. So this was a really bad surprise for a harmless minor version update!
After not finding any conclusion in this forum, I analyzed the old and the new php page. Some lines just moved within the code, only a few new ones were added, they don't seem to make much sense to me, but I am not an involved mantis developer anyway. Example code snippets:
Code: Select all
[...]
if ( ! in_array( $t_target_field, $t_fields ) ) {
$t_target_field = '';
}
[...]
$t_fields = array( 'priority', 'id', 'sponsorship_total', 'category', 'severity', 'status', 'last_updated', 'summary' );
[...]
$t_fields[] = "custom_" . $t_field_info['name'];
[...]
We just copied this page from 0.19.2 into the 0.19.4 environment and everything works fine.
Is there anybody who had the same problem? Is it a bug? We used our old configuration, do we have to add something new to it? Questions over question!
Cheers,
Robert.