. # -------------------------------------------------------- # $Id: manage_proj_cat_edit_page.php,v 1.32.2.1 2007-10-13 22:33:32 giallu Exp $ # -------------------------------------------------------- require_once( 'core.php' ); $t_core_path = config_get( 'core_path' ); require_once( $t_core_path.'category_api.php' ); auth_reauthenticate(); $f_project_id = gpc_get_int( 'project_id' ); $f_category = gpc_get_string( 'category' ); access_ensure_project_level( config_get( 'manage_project_threshold' ), $f_project_id ); $t_row = category_get_row( $f_project_id, $f_category ); $t_assigned_to = $t_row['user_id']; html_page_top1(); html_page_top2(); print_manage_menu( 'manage_proj_cat_edit_page.php' ); ?>
> >