. /** * @package MantisBT * @copyright Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ /** @ignore */ define( 'PLUGINS_DISABLED', true ); /** * MantisBT Core API's */ require_once( 'core.php' ); form_security_validate( 'manage_plugin_upgrade' ); auth_reauthenticate(); access_ensure_global_level( config_get( 'manage_plugin_threshold' ) ); $f_basename = gpc_get_string( 'name' ); $t_plugin = plugin_register( $f_basename, true ); if ( !is_null( $t_plugin ) ) { $t_status = plugin_upgrade( $t_plugin ); } form_security_purge( 'manage_plugin_upgrade' ); print_successful_redirect( 'manage_plugin_page.php' );