Skip to content

Commit

Permalink
fix 0009893: Users can change status on ViewOnly Tasks
Browse files Browse the repository at this point in the history
Signed-off-by: John Reese <jreese@leetcode.net>
  • Loading branch information
mantis authored and amyreese committed Dec 4, 2008
1 parent 739397f commit 185dc3c
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions core/html_api.php
Expand Up @@ -1180,12 +1180,12 @@ function html_buttons_view_bug_page( $p_bug_id ) {
echo '<td class="center">';
html_button_bug_assign_to( $p_bug_id );
echo '</td>';
}

# Change State button
echo '<td class="center">';
html_button_bug_change_status( $p_bug_id );
echo '</td>';
# Change State button
echo '<td class="center">';
html_button_bug_change_status( $p_bug_id );
echo '</td>';
}

# MONITOR/UNMONITOR button
echo '<td class="center">';
Expand Down Expand Up @@ -1217,12 +1217,12 @@ function html_buttons_view_bug_page( $p_bug_id ) {
echo '<td class="center">';
html_button_bug_move( $p_bug_id );
echo '</td>';
}

# DELETE button
echo '<td class="center">';
html_button_bug_delete( $p_bug_id );
echo '</td>';
# DELETE button
echo '<td class="center">';
html_button_bug_delete( $p_bug_id );
echo '</td>';
}

helper_call_custom_function( 'print_bug_view_page_custom_buttons', array( $p_bug_id ) );

Expand Down

0 comments on commit 185dc3c

Please sign in to comment.