. /** * @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( 'custom_field_api.php' ); require_once( 'helper_api.php' ); require_once( 'columns_api.php' ); auth_reauthenticate(); html_page_top( lang_get( 'manage_columns_config' ) ); print_manage_menu( 'adm_permissions_report.php' ); print_manage_config_menu( 'manage_config_columns_page.php' ); # Define constant that will be checked by the include page. define ( 'MANAGE_COLUMNS', '' ); include ( dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'manage_columns_inc.php' ); html_page_bottom();