View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update | 
|---|---|---|---|---|---|
| 0004215 | mantisbt | relationships | public | 2004-07-28 20:29 | 2004-08-29 02:16 | 
| Reporter | jferraz | Assigned To | thraxisp | ||
| Priority | normal | Severity | trivial | Reproducibility | always | 
| Status | closed | Resolution | fixed | ||
| Product Version | 0.19.0a2 | ||||
| Summary | 0004215: Malformed HTML | ||||
| Description | In core/relationship_api.php, function relationship_get_details, there is a spare unclosed column after the related bug number, on: if ( $p_html_preview == false ) { Note that the first line has a leading $t_td, and the second line has another <td bgcolor...>. Since due to this spare column, this table has a total of 6 columns, and below, in the function relationship_get_summary_html, there is a line with uses colspan="5" to display lang_get( 'relationship_warning_blocking_bugs_not_resolved' ). So this line breaks before the right edge of the table, and this was how I found this bug. | ||||
| Tags | No tags attached. | ||||
| Attached Files |  rel_table.diff (555 bytes)   
 Index: core/relationship_api.php =================================================================== RCS file: /cvsroot/mantisbt/mantisbt/core/relationship_api.php,v retrieving revision 1.14 diff -r1.14 relationship_api.php 398c398 < $t_relationship_info_html .= '<td><a href="' . string_get_bug_view_url( $t_related_bug_id ) . '">' . bug_format_id( $t_related_bug_id ) . '</a>' . $t_td; --- > $t_relationship_info_html .= '<td><a href="' . string_get_bug_view_url( $t_related_bug_id ) . '">' . bug_format_id( $t_related_bug_id ) . '</a></td>'; | ||||
