Index: ./core/relationship_api.php diff -u ./core/relationship_api.php:1.2 ./core/relationship_api.php:1.3 --- ./core/relationship_api.php:1.2 Wed Apr 8 13:45:06 2009 +++ ./core/relationship_api.php Wed Apr 8 14:36:36 2009 @@ -547,14 +547,17 @@ $t_status = string_attribute( get_enum_element( 'status', $t_bug->status ) ); $t_resolution = string_attribute( get_enum_element( 'resolution', $t_bug->resolution ) ); + # Issue 6856: Added resolution info to relationship table. $t_relationship_info_html = $t_td . string_no_break( $t_relationship_descr ) . ' '; if ( $p_html_preview == false ) { $t_relationship_info_html .= '' . bug_format_id( $t_related_bug_id ) . ''; $t_relationship_info_html .= '' . $t_status . ''; + $t_relationship_info_html .= ''.$t_resolution.''; } else { $t_relationship_info_html .= $t_td . bug_format_id( $t_related_bug_id ) . ''; $t_relationship_info_html .= $t_td . $t_status . ' '; + $t_relationship_info_html .= $t_td . $t_resolution.''; } $t_relationship_info_text = str_pad( $t_relationship_descr, 20 );