Skip to content

Commit

Permalink
Minor performance optimisation - project name in dropdown is going to…
Browse files Browse the repository at this point in the history
… be 1 line.
  • Loading branch information
mantis committed Dec 6, 2008
1 parent 221bda0 commit 77bfaa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/print_api.php
Expand Up @@ -526,7 +526,7 @@ function print_project_option_list( $p_project_id = null, $p_include_all_project
if( $t_id != $p_filter_project_id ) {
PRINT "<option value=\"$t_id\"";
check_selected( $p_project_id, $t_id );
PRINT '>' . string_display( project_get_field( $t_id, 'name' ) ) . '</option>' . "\n";
PRINT '>' . string_display_line( project_get_field( $t_id, 'name' ) ) . '</option>' . "\n";
print_subproject_option_list( $t_id, $p_project_id, $p_filter_project_id, $p_trace );
}
}
Expand Down

0 comments on commit 77bfaa5

Please sign in to comment.