(0007385)
|
Blzut3
|
2013-10-11 21:08
|
|
Don't worry about it. It's not an issue worth maintaining a delta over upstream MantisBT over.
I believe this is more or less intended behavior, but I'll report it to their tracker anyhow.
# only set handler if specified explicitly or if bug was not assigned to a handler
if( null == $p_handler_id ) {
if( bug_get_field( $p_bug_id, 'handler_id' ) == 0 ) {
$p_handler_id = auth_get_current_user_id();
bug_set_field( $p_bug_id, 'handler_id', $p_handler_id );
}
} else {
bug_set_field( $p_bug_id, 'handler_id', $p_handler_id );
} |
|