. /** * @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' ); access_ensure_global_level( config_get( 'tag_view_threshold' ) ); compress_enable(); $f_tag_id = gpc_get_int( 'tag_id' ); $t_tag_row = tag_get( $f_tag_id ); $t_name = string_display_line( $t_tag_row['name'] ); $t_description = string_display( $t_tag_row['description'] ); html_page_top( sprintf( lang_get( 'tag_details' ), $t_name ) ); ?>
> > '; echo ''; $i = 0; foreach( $t_tags_related as $t_tag ) { $t_name = string_display_line( $t_tag['name'] ); $t_description = string_display_line( $t_tag['description'] ); $t_count = $t_tag['count']; echo ( $i > 0 ? '' : '' ); echo "\n"; echo ''; $i++; } } ?>
',lang_get( 'tag_related' ),'
$t_name'; print_bracket_link( 'search.php?tag_string='.urlencode("+$t_tag_row[name]".config_get('tag_separator')."+$t_name"), sprintf( lang_get( 'tag_related_issues' ), $t_tag['count'] ) ); echo '