From 187c857c3e3b8895144df7e0a0a1f399041dbd82 Mon Sep 17 00:00:00 2001 From: Damien Regad Date: Wed, 6 Jul 2011 15:08:04 +0200 Subject: [PATCH] Fix #13123: Reminder Bug notes display time tracking information This was caused by a missing break statement at the end of the switch case handling Reminder bug notes --- bugnote_view_inc.php | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/bugnote_view_inc.php b/bugnote_view_inc.php index a6581bf..dc3c5f4 100644 --- a/bugnote_view_inc.php +++ b/bugnote_view_inc.php @@ -246,6 +246,7 @@ $num_notes = count( $t_bugnotes ); $t_to[] = prepare_user_name( $t_recipient ); } echo implode( ', ', $t_to ) . '

'; + break; case TIME_TRACKING: if ( access_has_bug_level( config_get( 'time_tracking_view_threshold' ), $f_bug_id ) ) { echo '
', $t_time_tracking_hhmm, '
'; -- 1.7.4.1