. /** * @package MantisBT * @copyright Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ $g_bypass_headers = true; header( 'Content-type: ' ); /** * MantisBT Core API's */ require_once( 'core.php' ); $t_plugin_path = config_get( 'plugin_path' ); $f_file = gpc_get_string( 'file' ); $t_matches = array(); if ( !preg_match( '/^([a-zA-Z0-9_-]+)\/([a-zA-Z0-9_-]+[\/a-zA-Z0-9_-]*\.?[a-zA-Z0-9_-]*)/', $f_file, $t_matches ) ) { trigger_error( ERROR_GENERIC, ERROR ); } $t_basename = $t_matches[1]; $t_file = $t_matches[2]; global $g_plugin_cache; if ( !isset( $g_plugin_cache[$t_basename] ) ) { trigger_error( ERROR_PLUGIN_NOT_REGISTERED, ERROR ); } plugin_file_include( $t_file, $t_basename );