Skip to content

Commit

Permalink
Fixed #7999: Project list view corrupted.
Browse files Browse the repository at this point in the history
  • Loading branch information
vboctor committed Oct 11, 2007
1 parent 9e2418b commit 2ef75f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/print_api.php
Expand Up @@ -6,7 +6,7 @@
# See the README and LICENSE files for details

# --------------------------------------------------------
# $Id: print_api.php,v 1.182 2007-09-28 01:57:56 vboctor Exp $
# $Id: print_api.php,v 1.182.2.1 2007-10-11 04:02:54 vboctor Exp $
# --------------------------------------------------------

$t_core_dir = dirname( __FILE__ ).DIRECTORY_SEPARATOR;
Expand Down Expand Up @@ -580,7 +580,7 @@ function print_extended_project_browser_subproject_javascript( $p_trace ) {
for ($i=0;$i<$t_project_count;$i++) {
$t_id = $t_project_ids[$i];
$t_nbsp = chr( 160 );
$t_name = addslashes( str_repeat( $t_nbsp , $t_level ) . str_repeat( '»', $t_level ) . ' ' . project_get_field( $t_id, 'name' ) );
$t_name = addslashes( str_repeat( $t_nbsp , $t_level ) . str_repeat( '&raquo;', $t_level ) . ' ' . project_get_field( $t_id, 'name' ) );
echo 'subprojects[\'' . $t_top_id . '\'][\'' . $p_trace . ';' . $t_id . '\'] = \'' . $t_name . '\';' . "\n";

print_extended_project_browser_subproject_javascript( $p_trace . ';' . $t_id );
Expand Down

0 comments on commit 2ef75f8

Please sign in to comment.