Skip to content

Commit 9f30262

Browse files
committedOct 5, 2012
Fix XML error in adm_config_report.php
Regression introduced by 935c106. Fixes #14756
1 parent 756a944 commit 9f30262

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎core/print_api.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ function print_subproject_option_list( $p_parent_id, $p_project_id = null, $p_fi
525525
}
526526
echo $t_full_id . '"';
527527
if ( $p_project_id !== null ) {
528-
check_selected( (string)$p_project_id, $t_full_id );
528+
check_selected( (string)$p_project_id, (string)$t_full_id );
529529
}
530530
echo '>' . str_repeat( '&#160;', count( $p_parents ) ) . str_repeat( '&#187;', count( $p_parents ) ) . ' ' . string_attribute( project_get_field( $t_id, 'name' ) ) . '</option>' . "\n";
531531
print_subproject_option_list( $t_id, $p_project_id, $p_filter_project_id, $p_trace, $p_parents );

0 commit comments

Comments
 (0)
Please sign in to comment.