On Nov 13, 2007 9:02 PM, Ultra <[EMAIL PROTECTED]> wrote:
> Hi all,
>
> I would like to know if there is any way to configure Mantis to move an
> issue from one project to another one while at the same Mantis removes
> the user assigned, so the case would be unassigned in the new queue.

no, I can't see any, but...

>
> Is there anything to change in the configuration or it should be a
> particular customization?

If you look at bug_actiongroup.php code (it is executed when you move
the issue) you can notice that in case of a MOVE operation a custom
function is called with the list of ids:

helper_call_custom_function( 'issue_update_notify', array( $t_bug_id ) );

so what you can do is:

* create a custom_functions_inc.php file
* define in that file the function
custom_function_override_issue_update_notify( $p_issue_id ) and add
there a call to bug_assign().

The only problem I see is that you will need to find a way to detect a
MOVE operation inside that function and assign to none only in that
case.

>
> Is there anyone there who made that thing too?
Not me...

HTH

Gianluca

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
mantisbt-help mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mantisbt-help

Reply via email to