--- C:/Documents and Settings/vsel/mantisbt-1.2.8/config_defaults_inc.php Mon Sep 26 21:54:19 2011 +++ C:/Documents and Settings/vsel/mantisbt-edited/config_defaults_inc.php Mon Sep 26 21:53:54 2011 @@ -2511,6 +2511,13 @@ $g_allow_no_category = OFF; /** + * When set ON, the inherited project name of the super-project is no longer displayed + * between [brackets] before categories and versions in sub-projects. + * @global int $g_hide_parent_project_name_on_categories + */ + $g_hide_parent_project_name_on_categories = ON; + + /** * login method * MD5, LDAP, BASIC_AUTH or HTTP_AUTH. * Note: you may not be able to easily switch encryption methods, so this --- C:/Documents and Settings/vsel/mantisbt-1.2.8/core/category_api.php Tue Sep 06 10:23:10 2011 +++ C:/Documents and Settings/vsel/mantisbt-edited/core/category_api.php Wed Sep 21 23:28:54 2011 @@ -600,7 +600,7 @@ $t_current_project = is_null( $p_current_project ) ? helper_get_current_project() : $p_current_project; - if( $p_show_project && $t_project_id != $t_current_project ) { + if( OFF == config_get( 'hide_parent_project_name_on_categories' ) && $t_project_id != $t_current_project ) { return '[' . project_get_name( $t_project_id ) . '] ' . $t_row['name']; } --- C:/Documents and Settings/vsel/mantisbt-1.2.8/core/version_api.php Mon Sep 26 21:55:41 2011 +++ C:/Documents and Settings/vsel/mantisbt-edited/core/version_api.php Wed Sep 21 23:29:26 2011 @@ -581,7 +581,7 @@ $t_show_project = $p_show_project; } - if ( $t_show_project && $t_project_id != $t_current_project_id ) { + if ( OFF == config_get( 'hide_parent_project_name_on_categories' ) && $t_show_project && $t_project_id != $t_current_project_id ) { return '[' . project_get_name( $t_project_id ) . '] ' . $t_row['version']; }