Skip to content

Commit

Permalink
Fix XML error in adm_config_report.php
Browse files Browse the repository at this point in the history
Regression introduced by 935c106.

Fixes #14756
  • Loading branch information
dregad committed Oct 5, 2012
1 parent 756a944 commit 9f30262
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/print_api.php
Expand Up @@ -525,7 +525,7 @@ function print_subproject_option_list( $p_parent_id, $p_project_id = null, $p_fi
}
echo $t_full_id . '"';
if ( $p_project_id !== null ) {
check_selected( (string)$p_project_id, $t_full_id );
check_selected( (string)$p_project_id, (string)$t_full_id );
}
echo '>' . str_repeat( '&#160;', count( $p_parents ) ) . str_repeat( '&#187;', count( $p_parents ) ) . ' ' . string_attribute( project_get_field( $t_id, 'name' ) ) . '</option>' . "\n";
print_subproject_option_list( $t_id, $p_project_id, $p_filter_project_id, $p_trace, $p_parents );
Expand Down

0 comments on commit 9f30262

Please sign in to comment.