.
/**
* @package MantisBT
* @copyright Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org
* @copyright Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net
* @link http://www.mantisbt.org
*/
/**
* MantisBT Core API's
*/
require_once( 'core.php' );
require_once( 'category_api.php' );
require_once( 'version_api.php' );
require_once( 'custom_field_api.php' );
require_once( 'icon_api.php' );
auth_reauthenticate();
$f_project_id = gpc_get_int( 'project_id' );
$f_show_global_users = gpc_get_bool( 'show_global_users' );
project_ensure_exists( $f_project_id );
$g_project_override = $f_project_id;
access_ensure_project_level( config_get( 'manage_project_threshold' ), $f_project_id );
$row = project_get_row( $f_project_id );
$t_can_manage_users = access_has_project_level( config_get( 'project_user_threshold' ), $f_project_id );
html_page_top( project_get_field( $f_project_id, 'name' ) );
print_manage_menu( 'manage_proj_edit_page.php' );
?>
|
||
|
||
|