Update of /cvsroot/mantisbt/mantisbt
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16321
Modified Files:
manage_proj_edit_page.php
Log Message:
Fixed #6637: Disabled projects don't appear under parent project.
Index: manage_proj_edit_page.php
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/manage_proj_edit_page.php,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -d -r1.93 -r1.94
--- manage_proj_edit_page.php 1 Jan 2006 02:56:39 -0000 1.93
+++ manage_proj_edit_page.php 21 Mar 2006 12:50:24 -0000 1.94
@@ -164,7 +164,7 @@
<!-- Subprojects -->
<?php
- $t_subproject_ids = current_user_get_accessible_subprojects(
$f_project_id );
+ $t_subproject_ids = current_user_get_accessible_subprojects(
$f_project_id, /* show_disabled */ true );
if ( Array() != $t_subproject_ids ) {
?>
@@ -229,7 +229,7 @@
<input type="hidden" name="project_id" value="<?php
echo $f_project_id ?>" />
<select name="subproject_id">
<?php
- $t_all_subprojects = project_hierarchy_get_subprojects( $f_project_id );
+ $t_all_subprojects = project_hierarchy_get_subprojects( $f_project_id,
/* $p_show_disabled */ true );
$t_all_subprojects[] = $f_project_id;
$t_manage_access = config_get( 'manage_project_threshold' );
-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
|