. /** * @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' ); auth_reauthenticate(); $f_category_id = gpc_get_int( 'id' ); $f_project_id = gpc_get_int( 'project_id' ); $t_row = category_get_row( $f_category_id ); $t_assigned_to = $t_row['user_id']; $t_project_id = $t_row['project_id']; $t_name = $t_row['name']; access_ensure_project_level( config_get( 'manage_project_threshold' ), $t_project_id ); html_page_top(); print_manage_menu( 'manage_proj_cat_edit_page.php' ); ?>
> >