View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0010958 | mantisbt | feature | public | 2009-09-17 11:05 | 2013-05-04 02:48 |
| Reporter | fschaper | Assigned To | |||
| Priority | normal | Severity | feature | Reproducibility | N/A |
| Status | acknowledged | Resolution | open | ||
| Product Version | 1.2.0rc1 | ||||
| Summary | 0010958: patch: added "assign to reporter" to the bug_change_status_page | ||||
| Description | for our workflow, 90% of the time we set the ticket on a "to be tested" status and assign it back to the initial reporter. The way mantis currently handles things, you will have to select the initial reporter from the list of users - which can be burdensome when there is a lot of them. The attached path adds the "[Reporter]" option to the list of available users like on the bug view page. | ||||
| Tags | patch | ||||
| Attached Files | bug_change_status_page.php.patch (709 bytes)
--- bug_change_status_page.php Sun Jul 12 04:03:34 2009
+++ bug_change_status_page.php Thu Sep 17 16:44:18 2009
@@ -164,7 +164,13 @@
<td>
<select name="handler_id">
<option value="0"></option>
- <?php print_assign_to_option_list( $t_bug->handler_id, $t_bug->project_id ) ?>
+ <?php
+ if ( ( $t_handler_id != $t_reporter_id ) && user_exists( $t_reporter_id ) &&
+ ( access_has_bug_level( config_get( 'handle_bug_threshold' ), $f_bug_id, $t_reporter_id ) ) ) {
+ ?><option value="<?php echo $t_reporter_id; ?>">[<?php echo lang_get( 'reporter' ); ?>]</option><?php
+ }
+ print_assign_to_option_list( $t_bug->handler_id, $t_bug->project_id )
+ ?>
</select>
</td>
</tr>
| ||||
| related to | 0015788 | feedback | request for change Assign collection of bugs to Reporter |
|
Here are my comments on the patch:
|
|