Blame Extras/Mantis/1.1.2-1.fc9/print_bug_page.php

4c79b5
4c79b5
# Mantis - a php based bugtracking system
4c79b5
4c79b5
# Copyright (C) 2000 - 2002  Kenzaburo Ito - kenito@300baud.org
4c79b5
# Copyright (C) 2002 - 2007  Mantis Team   - mantisbt-dev@lists.sourceforge.net
4c79b5
4c79b5
# Mantis is free software: you can redistribute it and/or modify
4c79b5
# it under the terms of the GNU General Public License as published by
4c79b5
# the Free Software Foundation, either version 2 of the License, or
4c79b5
# (at your option) any later version.
4c79b5
#
4c79b5
# Mantis is distributed in the hope that it will be useful,
4c79b5
# but WITHOUT ANY WARRANTY; without even the implied warranty of
4c79b5
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
4c79b5
# GNU General Public License for more details.
4c79b5
#
4c79b5
# You should have received a copy of the GNU General Public License
4c79b5
# along with Mantis.  If not, see <http://www.gnu.org/licenses/>.
4c79b5
4c79b5
	# --------------------------------------------------------
4c79b5
	# $Id: print_bug_page.php,v 1.60.2.1 2007-10-13 22:34:18 giallu Exp $
4c79b5
	# --------------------------------------------------------
4c79b5
?>
4c79b5
4c79b5
	require_once( 'core.php' );
4c79b5
4c79b5
	$t_core_path = config_get( 'core_path' );
4c79b5
4c79b5
	require_once( $t_core_path.'bug_api.php' );
4c79b5
	require_once( $t_core_path.'custom_field_api.php' );
4c79b5
	require_once( $t_core_path.'date_api.php' );
4c79b5
	require_once( $t_core_path.'string_api.php' );
4c79b5
	require_once( $t_core_path.'last_visited_api.php' );
4c79b5
?>
4c79b5
4c79b5
	$f_bug_id = gpc_get_int( 'bug_id' );
4c79b5
4c79b5
	if ( SIMPLE_ONLY == $g_show_view ) {
4c79b5
		print_header_redirect ( 'bug_view_page.php?bug_id='.$f_bug_id );
4c79b5
	}
4c79b5
4c79b5
	access_ensure_bug_level( VIEWER, $f_bug_id );
4c79b5
4c79b5
	$c_bug_id = (integer)$f_bug_id;
4c79b5
4c79b5
	$t_bug_table = config_get( 'mantis_bug_table' );
4c79b5
	$query = "SELECT *
4c79b5
			FROM $t_bug_table
4c79b5
			WHERE id='$c_bug_id'";
4c79b5
	$result = db_query( $query );
4c79b5
	$row = db_fetch_array( $result );
4c79b5
	extract( $row, EXTR_PREFIX_ALL, 'v' );
4c79b5
4c79b5
	$t_bug_text_table = config_get( 'mantis_bug_text_table' );
4c79b5
	$query = "SELECT *
4c79b5
			FROM $t_bug_text_table
4c79b5
			WHERE id='$v_bug_text_id'";
4c79b5
	$result = db_query( $query );
4c79b5
	$row = db_fetch_array( $result );
4c79b5
	extract( $row, EXTR_PREFIX_ALL, 'v2' );
4c79b5
	
4c79b5
	$t_history = history_get_events_array( $f_bug_id );
4c79b5
4c79b5
	$v_os 						= string_display( $v_os );
4c79b5
	$v_os_build					= string_display( $v_os_build );
4c79b5
	$v_platform					= string_display( $v_platform );
4c79b5
	$v_version 					= string_display( $v_version );
4c79b5
	$v_summary 					= string_display_links( $v_summary );
4c79b5
	$v2_description 			= string_display_links( $v2_description );
4c79b5
	$v2_steps_to_reproduce 		= string_display_links( $v2_steps_to_reproduce );
4c79b5
	$v2_additional_information 	= string_display_links( $v2_additional_information );
4c79b5
?>
4c79b5
4c79b5
4c79b5
	html_head_end();
4c79b5
	html_body_begin();
4c79b5
?>
4c79b5
4c79b5

4c79b5
4c79b5
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
4c79b5
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
4c79b5
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
4c79b5
4c79b5
	
4c79b5
		:
4c79b5
	
4c79b5
	
4c79b5
		:
4c79b5
	
4c79b5
	
4c79b5
		:
4c79b5
	
4c79b5
	
4c79b5
		:
4c79b5
	
4c79b5
	
4c79b5
		:
4c79b5
	
4c79b5
	
4c79b5
		:
4c79b5
	
4c79b5
4c79b5
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
4c79b5
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
4c79b5
4c79b5
	
4c79b5
		:
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
	
4c79b5
		:
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
	 
4c79b5
4c79b5
4c79b5
	
4c79b5
		:
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
			if ( access_has_bug_level( config_get( 'view_handler_threshold' ), $f_bug_id ) ) {
4c79b5
				print_user_with_subject( $v_handler_id, $f_bug_id ); 
4c79b5
			}
4c79b5
		?>
4c79b5
	
4c79b5
	
4c79b5
		:
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
	 
4c79b5
4c79b5
4c79b5
	
4c79b5
		:
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
	
4c79b5
		:
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
	 
4c79b5
4c79b5
4c79b5
	
4c79b5
		:
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
	
4c79b5
		:
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
	 
4c79b5
4c79b5
4c79b5
	
4c79b5
		:
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
	
4c79b5
		:
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
	 
4c79b5
4c79b5
4c79b5
	
4c79b5
		:
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
			if ( !config_get( 'enable_relationship' ) ) {
4c79b5
				echo lang_get( 'duplicate_id' );
4c79b5
			} # MASC RELATIONSHIP
4c79b5
		?> 
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
			if ( !config_get( 'enable_relationship' ) ) {
4c79b5
				print_duplicate_id( $v_duplicate_id );
4c79b5
			} # MASC RELATIONSHIP
4c79b5
		?> 
4c79b5
	
4c79b5
	 
4c79b5
4c79b5
4c79b5
	
4c79b5
		:
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
	
4c79b5
		:
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
	 
4c79b5
4c79b5
4c79b5
4c79b5
$t_related_custom_field_ids = custom_field_get_linked_ids( $v_project_id );
4c79b5
foreach( $t_related_custom_field_ids as $t_id ) {
4c79b5
	$t_def = custom_field_get_definition( $t_id );
4c79b5
?>
4c79b5
4c79b5
	
4c79b5
		:
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
4c79b5
4c79b5
}       // foreach
4c79b5
?>
4c79b5
4c79b5
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
4c79b5
4c79b5
	
4c79b5
		:
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
4c79b5
4c79b5
	
4c79b5
		:
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
4c79b5
4c79b5
	
4c79b5
		:
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
4c79b5
4c79b5
	
4c79b5
		:
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
4c79b5
4c79b5
	# account profile description
4c79b5
	if ( $v_profile_id > 0 ) {
4c79b5
	    $t_user_prof_table = config_get( 'mantis_user_profile_table' );
4c79b5
		$query = "SELECT description
4c79b5
				FROM $t_user_prof_table
4c79b5
				WHERE id='$v_profile_id'";
4c79b5
		$result = db_query( $query );
4c79b5
		$t_profile_description = '';
4c79b5
		if ( db_num_rows( $result ) > 0 ) {
4c79b5
			$t_profile_description = db_result( $result, 0 );
4c79b5
		}
4c79b5
		$t_profile_description = string_display_links( $t_profile_description );
4c79b5
4c79b5
?>
4c79b5
4c79b5
	
4c79b5
		:
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
4c79b5
4c79b5
	}
4c79b5
4c79b5
	# MASC RELATIONSHIP
4c79b5
	if ( ON == config_get( 'enable_relationship' ) ) {
4c79b5
		echo "";
4c79b5
		echo "" . lang_get( 'bug_relationships' ) . "";
4c79b5
		echo "" . relationship_get_summary_html_preview( $c_bug_id ) . "";
4c79b5
	}
4c79b5
	# MASC RELATIONSHIP
4c79b5
?>
4c79b5
4c79b5
	
4c79b5
		:
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
4c79b5
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
4c79b5
4c79b5
	# ISSUE HISTORY 
4c79b5
?>
4c79b5
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
4c79b5
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
4c79b5
4c79b5
	foreach ( $t_history as $t_item ) {
4c79b5
?>
4c79b5
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
	
4c79b5
4c79b5
4c79b5
	} 
4c79b5
?>
4c79b5
4c79b5
4c79b5
4c79b5
	include( dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'print_bugnote_inc.php' ) ;
4c79b5
4c79b5
	last_visited_issue( $f_bug_id );
4c79b5
?>