future versions

Post about your customizations to share with others.

Moderators: Developer, Contributor

Post Reply
bheikamp
Posts: 4
Joined: 09 May 2007, 07:20

future versions

Post by bheikamp »

I Found out that the future versions where not working, so I made a change in the code.

change in de core/versions_api.php, modified function version_get_all_rows

$t_project_version_table = config_get( 'mantis_project_version_table' );

if ( $p_released === null ) {
$t_released_where = '';
} else if ($p_released == '0') {
$t_released_where = "AND date_order > (select date_order FROM $t_project_version_table where project_id='$c_project_id' and released=1) and released=0";
} else {
$c_released = db_prepare_int( $p_released );
$t_released_where = "AND ( released = $c_released )";
}

modified bug_update_advanced_page.php, bug_change_status_page.php

changed the VERSION_ALL in VERSION_FUTURE

now it all works fine, may be this is a fix that can be implemented in the next release ?
Last edited by bheikamp on 09 May 2007, 07:51, edited 1 time in total.
vboctor
Site Admin
Posts: 1293
Joined: 13 Feb 2005, 22:11
Location: Redmond, Washington
Contact:

Post by vboctor »

Hi bheikamp,

Can you please report this issue into the bug tracker. Also please include the symptoms of the bug.
Migrate your MantisBT to the MantisHub Cloud
bheikamp
Posts: 4
Joined: 09 May 2007, 07:20

Post by bheikamp »

I'm trying to put in in the bugtracker, but I can't create an account, no mail is send ! Or is there another way to do this ?
vboctor
Site Admin
Posts: 1293
Joined: 13 Feb 2005, 22:11
Location: Redmond, Washington
Contact:

Post by vboctor »

Did you get your signup email now?
Migrate your MantisBT to the MantisHub Cloud
bheikamp
Posts: 4
Joined: 09 May 2007, 07:20

Post by bheikamp »

no, I receive mails from the forum, but not from the bugtracker, there is also nothing in my spam folder ?
bheikamp
Posts: 4
Joined: 09 May 2007, 07:20

Post by bheikamp »

I've made a new user bertheikamp, I received an e-mail and I added the bug
Post Reply