View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0005546 | mantisbt | other | public | 2005-04-30 22:19 | 2005-05-31 11:33 |
| Reporter | ryandesign | Assigned To | vboctor | ||
| Priority | normal | Severity | minor | Reproducibility | always |
| Status | closed | Resolution | fixed | ||
| Product Version | 1.0.0a2 | ||||
| Fixed in Version | 1.0.0a3 | ||||
| Summary | 0005546: Invalid HTML: missing <tr></tr> in bugnote_view.inc.php (patch) | ||||
| Description | Missing <tr> tag in bugnote_view.inc.php. Attached patch against 1.0.0a2 fixes it. | ||||
| Tags | No tags attached. | ||||
| Attached Files | bugnote_view.inc.php.patch (616 bytes)
Index: bugnote_view_inc.php
===================================================================
--- bugnote_view_inc.php (revision 16)
+++ bugnote_view_inc.php (working copy)
@@ -47,11 +47,13 @@
<?php if ( ON == config_get( 'use_javascript' ) ) { ?>
<div id="bugnotes_closed" style="display: none;">
<table class="width100" cellspacing="1">
+<tr>
<td class="form-title" colspan="2">
<a href="" onclick="ToggleDiv( 'bugnotes', g_div_bugnotes ); return false;"
><img border="0" src="images/plus.png" alt="+" /></a>
<?php echo lang_get( 'bug_notes_title' ) ?>
</td>
+</tr>
</table>
</div>
<?php } ?>
| ||||