Search found 7 matches

by Frederic
21 Feb 2007, 14:03
Forum: Customizations
Topic: searching in custom fields
Replies: 15
Views: 29425

:D
If somebody is interested in the solution for my question:

To find a searchstring in the custom fields, just modifiy the sql statement in filter_api.php:


$custom_query = " $t_bug_table.id IN ( SELECT DISTINCT bug_id from mantis_custom_field_string_table where value LIKE '%$c_search%')";

$t ...
by Frederic
20 Feb 2007, 11:49
Forum: Customizations
Topic: searching in custom fields
Replies: 15
Views: 29425

I´m sure it cane be done by modifiying filter_api.php.

It should work when adding
"$t_textsearch_where_clause = ...
OR ($t_custom_field_string_table.value LIKE '%$c_search%'))";

$t_textsearch_wherejoin_clause = ....
OR ($t_custom_field_string_table.value LIKE '%$c_search%'))";

and in the loop ...
by Frederic
19 Feb 2007, 09:54
Forum: Customizations
Topic: searching in custom fields
Replies: 15
Views: 29425

searching in custom fields

Hi there,

is there a way to use the search function on view_al_bug_page on all custom_fields?

Thx for your help


edit: I dont want to use Filter_on_custom_fields, i just have too many of them.
by Frederic
14 Feb 2007, 15:52
Forum: Customizations
Topic: E-Mail config options
Replies: 4
Views: 7807

Thanks again!

I just wanted to write an own function to log the recipients :oops:


I know it would be better (easier) to make changes into the custom_function_inc.php on little changes.
I´m doing an apprenticeship at the moment, one of my duties is to modify the mantis_bug_tracker to a 2nd ...
by Frederic
14 Feb 2007, 15:32
Forum: Customizations
Topic: E-Mail config options
Replies: 4
Views: 7807

Thank you very much for your fast answer.
I hoped the soloution would be another setting, because I´ve allready tried this config. I have to say, that I customised the bug_status_enum_strings and some other options. I thought that this should have no effect to the email notification when a bug is ...
by Frederic
14 Feb 2007, 15:05
Forum: Customizations
Topic: E-Mail config options
Replies: 4
Views: 7807

E-Mail config options

Hi there,

i´ve got a question about the email settings in the config_defaults_inc.php
(Mantis 1.06)

I think I dont really understand how to use the array default_notify_flags / notify_flags.
Mantis should send Emails to all users with access level >= Reporter
when a new bug is submitted, and if a ...
by Frederic
24 Jan 2007, 09:22
Forum: Customizations
Topic: Disable Projects
Replies: 0
Views: 3825

Disable Projects

Hello there,

i´m trying to modyfi Mantis (1.0.6) to a reporting site for changerequests.
Therefor im using my modified Mantis as second installation, it is accessible from the first installation for bugtracking and uses the 'mantis_user_table' from the first installation.
Now i got a little ...