MantisBT - Site
View Issue Details
0001535Site[All Projects] Bugpublic2013-10-11 16:112013-10-11 21:08
Arco 
Blzut3 
normalminoralways
closedwon't fix 
0001535: [Tracker] "Assigned To" Always Picks Handling User When Resolving Tickets
Title.
I can't do anything about the "user0" on the "Assigned To" input.
No tags attached.
png example.png (92,997) 2013-10-11 16:11
/tracker/file_download.php?file_id=1080&type=bug
png
Issue History
2013-10-11 16:11ArcoNew Issue
2013-10-11 16:11ArcoFile Added: example.png
2013-10-11 21:08Blzut3Note Added: 0007385
2013-10-11 21:08Blzut3Statusnew => closed
2013-10-11 21:08Blzut3Assigned To => Blzut3
2013-10-11 21:08Blzut3Resolutionopen => won't fix

Notes
(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 );
    }