Skip to content

Commit 1ea9202

Browse files
committedJan 20, 2012
Fix malformed HTML in manage_config_workflow_page.php
Added missing </tr> tags
1 parent 42966e0 commit 1ea9202

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎manage_config_workflow_page.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ function access_row() {
335335
if ( isset( $t_project_workflow['exit'][$t_status][$t_status] ) ) {
336336
$t_validation_result .= '<tr ' . helper_alternate_class() . '><td>'
337337
. MantisEnum::getLabel( $t_lang_enum_status, $t_status )
338-
. '</td><td bgcolor="#FFED4F">' . lang_get( 'superfluous' ) . '</td>';
338+
. '</td><td bgcolor="#FFED4F">' . lang_get( 'superfluous' ) . '</td></tr>';
339339
}
340340
}
341341

@@ -344,7 +344,7 @@ function access_row() {
344344
if ( ( 0 == count( $t_project_workflow['entry'][$t_status] ) ) && ( 0 < count( $t_project_workflow['exit'][$t_status] ) ) ){
345345
$t_validation_result .= '<tr ' . helper_alternate_class() . '><td>'
346346
. MantisEnum::getLabel( $t_lang_enum_status, $t_status )
347-
. '</td><td bgcolor="#FF0088">' . lang_get( 'unreachable' ) . '</td>';
347+
. '</td><td bgcolor="#FF0088">' . lang_get( 'unreachable' ) . '</td></tr>';
348348
}
349349
}
350350

@@ -353,7 +353,7 @@ function access_row() {
353353
if ( ( 0 == count( $t_project_workflow['exit'][$t_status] ) ) && ( 0 < count( $t_project_workflow['entry'][$t_status] ) ) ){
354354
$t_validation_result .= '<tr ' . helper_alternate_class() . '><td>'
355355
. MantisEnum::getLabel( $t_lang_enum_status, $t_status )
356-
. '</td><td bgcolor="#FF0088">' . lang_get( 'no_exit' ) . '</td>';
356+
. '</td><td bgcolor="#FF0088">' . lang_get( 'no_exit' ) . '</td></tr>';
357357
}
358358
}
359359

@@ -362,7 +362,7 @@ function access_row() {
362362
if ( ( 0 == count( $t_project_workflow['exit'][$t_status] ) ) && ( 0 == count( $t_project_workflow['entry'][$t_status] ) ) ){
363363
$t_validation_result .= '<tr ' . helper_alternate_class() . '><td>'
364364
. MantisEnum::getLabel( $t_lang_enum_status, $t_status )
365-
. '</td><td bgcolor="#FF0088">' . lang_get( 'unreachable' ) . '<br />' . lang_get( 'no_exit' ) . '</td>';
365+
. '</td><td bgcolor="#FF0088">' . lang_get( 'unreachable' ) . '<br />' . lang_get( 'no_exit' ) . '</td></tr>';
366366
}
367367
}
368368

0 commit comments

Comments
 (0)
Please sign in to comment.