Filter for last change?

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
gthomas
Posts: 6
Joined: 04 Aug 2011, 12:25

Filter for last change?

Post by gthomas »

Hi boys & girls,

is there ANY way to filter MantisBT-Data concerning the date and time of last modification?
Something like
"give me all bugs where modification-date >= 24.12.2011, 10.05pm"?

Otherwise:
Is there any way to modify filter via SOAP?
vServer using
Mantis 1.2.6
PHP 5.3.2
MySQL 5.1.41
gerald2545
Posts: 5
Joined: 03 Nov 2008, 12:01

Re: Filter for last change?

Post by gerald2545 »

Hi,
I had the same question as we are more interested in displaying the bugs by modification date rather than creation date (maybe not the case for everybody).

A turnaround is to modify the Where clause of the query in the core/filter_api.php (mantis 1.2.10):

replace line 1613
array_push( $t_where_clauses, "($t_bug_table.date_submitted BETWEEN " . db_param() . " AND " . db_param() . " )" );
with line
array_push( $t_where_clauses, "($t_bug_table.last_updated BETWEEN " . db_param() . " AND " . db_param() . " )" );

I just made the change and it seems to work.

I also change the lang file to be clearer :
Select bugs updated between 2 dates

Not a nice solution but solved my problem
Mantis 1.2.10
Post Reply