Skip to content

Commit

Permalink
Fix #13123: Reminder Bug notes display time tracking information
Browse files Browse the repository at this point in the history
    This was caused by a missing break statement at the end of the switch
    case handling Reminder bug notes

    Signed-off-by: Robert Munteanu <robert.munteanu@gmail.com>
  • Loading branch information
mantis committed Jul 30, 2011
1 parent 119c0c7 commit 2d95089
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions bugnote_view_inc.php
Expand Up @@ -246,6 +246,7 @@
$t_to[] = prepare_user_name( $t_recipient );
}
echo implode( ', ', $t_to ) . '</em><br /><br />';
break;
case TIME_TRACKING:
if ( access_has_bug_level( config_get( 'time_tracking_view_threshold' ), $f_bug_id ) ) {
echo '<div class="time-tracked">', $t_time_tracking_hhmm, '</div>';
Expand Down

0 comments on commit 2d95089

Please sign in to comment.