Hiding children

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
JR10
Posts: 20
Joined: 20 Sep 2011, 18:19

Hiding children

Post by JR10 »

Is there a way to hide any report that is a child of another?
If it's a child, then hide it from changelog, and roadmap.
Thanks in advance.
atrol
Site Admin
Posts: 8375
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: Hiding children

Post by atrol »

You can write custom functions for this

Code: Select all

# --------------------
# Checks the provided bug and determines whether it should be included in the roadmap or not.
# returns true: to include, false: to exclude.
function custom_function_override_roadmap_include_issue( $p_issue_id ) {
    return ( true );
}
http://docs.mantisbt.org/master-1.2.x/e ... CT.ROADMAP
Works the same way for changelog.
Please use Search before posting and read the Manual
Post Reply