Skip to content

Commit 67f88a4

Browse files
committedSep 24, 2011
Issue #13344: Add missing PHP closing tags for manage_proj pages
Commit 9c1dce1 forgot some PHP closing tags, preventing manage_project_edit_page and manage_project_page from parsing correctly.
1 parent e7815ec commit 67f88a4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎manage_proj_edit_page.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@
282282
foreach ( $t_categories as $t_category ) {
283283
$t_id = $t_category['id'];
284284
$t_inherited = ( $t_category['project_id'] != $f_project_id );
285-
285+
?>
286286
<tr <?php echo helper_alternate_class() ?>>
287287
<td><?php echo string_display( category_full_name( $t_id, /* showProject */ $t_inherited, $f_project_id ) ) ?></td>
288288
<td><?php echo prepare_user_name( $t_category['user_id'] ) ?></td>

‎manage_proj_page.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@
174174

175175
foreach ( $t_categories as $t_category ) {
176176
$t_id = $t_category['id'];
177-
177+
?>
178178
<tr <?php echo helper_alternate_class() ?>>
179179
<td><?php echo string_display( category_full_name( $t_id, false ) ) ?></td>
180180
<td><?php echo prepare_user_name( $t_category['user_id'] ) ?></td>

0 commit comments

Comments
 (0)
Please sign in to comment.