View Issue Details

IDProjectCategoryView StatusLast Update
0005079mantisbtbugtrackerpublic2005-04-18 10:32
Reporterfman Assigned Tothraxisp  
PrioritynormalSeverityminorReproducibilityalways
Status closedResolutionfixed 
Product Version0.19.2 
Fixed in Version1.0.0a1 
Summary0005079: Reopen Issue - Show Assign to only if Access level >= update_bug_assign_threshold
Description

When Reopening an Issue, I think is needed to test access level >= update_bug_assign_threshold
in order to enable the "Assign to" combo box.
In this way a customer (normally reporter or updater), will not see it.

Old:
<?php
if ( $t_resolved > $f_new_status ) { ?>
<!-- Assigned To -->
<tr <?php echo helper_alternate_class() ?>>

New:
<?php
if ( ($t_resolved > $f_new_status) &&
access_has_bug_level( config_get( 'update_bug_assign_threshold'), $f_bug_id)
) { ?>
<!-- Assigned To -->
<tr <?php echo helper_alternate_class() ?>>

TagsNo tags attached.

Relationships

has duplicate 0005094 closedthraxisp 'Assign to: ' displayed by error when changing status 

Activities

thraxisp

thraxisp

2005-01-08 08:50

reporter   ~0008893

See my answer to 0005078 with respect to the implementation of "update_bug_assign_threshold".

This check is done earlier in the code, but there is an issue when "update_bug_assign_threshold" is greater than "update_bug_threshold"

thraxisp

thraxisp

2005-01-08 10:45

reporter   ~0008894

Fixed in CVS.