From 9c413e3302ec0a7e29346ae95725f6030e381373 Mon Sep 17 00:00:00 2001
From: Damien Regad <damien.regad@merckserono.net>
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 9332839..6448a34 100644
--- a/bugnote_view_inc.php
+++ b/bugnote_view_inc.php
@@ -183,6 +183,7 @@ $num_notes = count( $t_bugnotes );
 						$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 '<b><big>', $t_time_tracking_hhmm, '</big></b><br /><br />';
-- 
1.7.4.1

