. /** * @package MantisBT * @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' ); /** * requires tag_api */ require_once( 'tag_api.php' ); form_security_validate( 'tag_delete' ); access_ensure_global_level( config_get( 'tag_edit_threshold' ) ); $f_tag_id = gpc_get_int( 'tag_id' ); $t_tag_row = tag_get( $f_tag_id ); helper_ensure_confirmed( lang_get( 'tag_delete_message' ), lang_get( 'tag_delete_button' ) ); tag_delete( $f_tag_id ); form_security_purge( 'tag_delete' ); print_successful_redirect( 'manage_tags_page.php' );