From 2ef75f89ce3b08ad97d7f43dd56ad609ff28129d Mon Sep 17 00:00:00 2001 From: Victor Boctor Date: Thu, 11 Oct 2007 04:02:54 +0000 Subject: [PATCH] Fixed #7999: Project list view corrupted. git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/branches/BRANCH_1_1_0@4633 f5dc347c-c33d-0410-90a0-b07cc1902cb9 --- core/print_api.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/print_api.php b/core/print_api.php index 63ef562c83..93abeeb4ea 100644 --- a/core/print_api.php +++ b/core/print_api.php @@ -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; @@ -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( '»', $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 );