View Issue Details

IDProjectCategoryView StatusLast Update
0005546mantisbtotherpublic2005-05-31 11:33
Reporterryandesign Assigned Tovboctor  
PrioritynormalSeverityminorReproducibilityalways
Status closedResolutionfixed 
Product Version1.0.0a2 
Fixed in Version1.0.0a3 
Summary0005546: 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.

TagsNo 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 } ?>
bugnote_view.inc.php.patch (616 bytes)   

Activities