? mantisbt.4341.patch.txt
Index: bug_monitor_list_view_inc.php
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/bug_monitor_list_view_inc.php,v
retrieving revision 1.11
diff -u -r1.11 bug_monitor_list_view_inc.php
--- bug_monitor_list_view_inc.php	29 Jun 2004 08:38:43 -0000	1.11
+++ bug_monitor_list_view_inc.php	4 Oct 2004 11:34:01 -0000
@@ -20,7 +20,7 @@
 	$t_user_table = config_get( 'mantis_user_table' );
 
 	# get the bugnote data
-	$query = "SELECT user_id
+	$query = "SELECT user_id, enabled
 			FROM $t_bug_monitor_table m, $t_user_table u
 			WHERE m.bug_id=$c_bug_id AND m.user_id = u.id
 			ORDER BY u.realname, u.username";
@@ -71,7 +71,17 @@
  		for ( $i = 0; $i < $num_users; $i++ ) {
  			$row = db_fetch_array( $result );
 			echo ($i > 0) ? ', ' : '';
+			if ( FALSE == $row['enabled'] ) {
+				?>
+		<font STYLE="text-decoration: line-through">
+				<?php } else { ?>
+		<font STYLE="text-decoration: none">
+				<?php
+			}
 			echo print_user( $row['user_id'] );
+			?>
+		</font>
+			<?php
  		}
 ?>
 	</td>
