. /** * @package MantisBT * @copyright Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org * @copyright Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ $g_allow_browser_cache = 1; require_once( 'core.php' ); require_once( 'ajax_api.php' ); require_once( 'bug_api.php' ); require_once( 'custom_field_api.php' ); require_once( 'date_api.php' ); require_once( 'last_visited_api.php' ); require_once( 'projax_api.php' ); $f_bug_id = gpc_get_int( 'bug_id' ); $tpl_bug = bug_get( $f_bug_id, true ); if ( $tpl_bug->project_id != helper_get_current_project() ) { # in case the current project is not the same project of the bug we are viewing... # ... override the current project. This to avoid problems with categories and handlers lists etc. $g_project_override = $tpl_bug->project_id; $tpl_changed_project = true; } else { $tpl_changed_project = false; } if ( bug_is_readonly( $f_bug_id ) ) { error_parameters( $f_bug_id ); trigger_error( ERROR_BUG_READ_ONLY_ACTION_DENIED, ERROR ); } access_ensure_bug_level( config_get( 'update_bug_threshold' ), $f_bug_id ); html_page_top( bug_format_summary( $f_bug_id, SUMMARY_CAPTION ) ); print_recently_visited(); $t_fields = config_get( 'bug_update_page_fields' ); $t_fields = columns_filter_disabled( $t_fields ); $tpl_bug_id = $f_bug_id; $t_action_button_position = config_get( 'action_button_position' ); $tpl_top_buttons_enabled = $t_action_button_position == POSITION_TOP || $t_action_button_position == POSITION_BOTH; $tpl_bottom_buttons_enabled = $t_action_button_position == POSITION_BOTTOM || $t_action_button_position == POSITION_BOTH; $tpl_show_id = in_array( 'id', $t_fields ); $tpl_show_project = in_array( 'project', $t_fields ); $tpl_show_category = in_array( 'category_id', $t_fields ); $tpl_show_view_state = in_array( 'view_state', $t_fields ); $tpl_view_state = $tpl_show_view_state ? string_display_line( get_enum_element( 'view_state', $tpl_bug->view_state ) ) : ''; $tpl_show_date_submitted = in_array( 'date_submitted', $t_fields ); $tpl_show_last_updated = in_array( 'last_updated', $t_fields ); $tpl_show_reporter = in_array( 'reporter', $t_fields ); $tpl_show_handler = in_array( 'handler', $t_fields ); $tpl_show_priority = in_array( 'priority', $t_fields ); $tpl_show_severity = in_array( 'severity', $t_fields ); $tpl_show_reproducibility = in_array( 'reproducibility', $t_fields ); $tpl_show_status = in_array( 'status', $t_fields ); $tpl_show_resolution = in_array( 'resolution', $t_fields ); $tpl_show_projection = in_array( 'projection', $t_fields ) && config_get( 'enable_projection' ) == ON; $tpl_show_eta = in_array( 'eta', $t_fields ) && config_get( 'enable_eta' ) == ON; $t_show_profiles = config_get( 'enable_profiles' ) == ON; $tpl_show_platform = $t_show_profiles && in_array( 'platform', $t_fields ); $tpl_show_os = $t_show_profiles && in_array( 'os', $t_fields ); $tpl_show_os_version = $t_show_profiles && in_array( 'os_version', $t_fields ); $tpl_show_versions = version_should_show_product_version( $tpl_bug->project_id ); $tpl_show_product_version = $tpl_show_versions && in_array( 'product_version', $t_fields ); $tpl_show_product_build = $tpl_show_versions && in_array( 'product_build', $t_fields ) && ( config_get( 'enable_product_build' ) == ON ); $tpl_product_build_attribute = $tpl_show_product_build ? string_attribute( $tpl_bug->build ) : ''; $tpl_show_target_version = $tpl_show_versions && in_array( 'target_version', $t_fields ) && access_has_bug_level( config_get( 'roadmap_update_threshold' ), $tpl_bug_id ); $tpl_show_fixed_in_version = $tpl_show_versions && in_array( 'fixed_in_version', $t_fields ); $tpl_show_due_date = in_array( 'due_date', $t_fields ) && access_has_bug_level( config_get( 'due_date_view_threshold' ), $tpl_bug_id ); $tpl_show_summary = in_array( 'summary', $t_fields ); $tpl_summary_attribute = $tpl_show_summary ? string_attribute( $tpl_bug->summary ) : ''; $tpl_show_description = in_array( 'description', $t_fields ); $tpl_description_textarea = $tpl_show_description ? string_textarea( $tpl_bug->description ) : ''; $tpl_show_additional_information = in_array( 'additional_info', $t_fields ); $tpl_additional_information_textarea = $tpl_show_additional_information ? string_textarea( $tpl_bug->additional_information ) : ''; $tpl_show_steps_to_reproduce = in_array( 'steps_to_reproduce', $t_fields ); $tpl_steps_to_reproduce_textarea = $tpl_show_steps_to_reproduce ? string_textarea( $tpl_bug->steps_to_reproduce ) : ''; if( NO_USER == $tpl_bug->handler_id ) { $tpl_handler_name = ''; } else { $tpl_handler_name = string_display_line( user_get_name( $tpl_bug->handler_id ) ); } $tpl_can_change_view_state = $tpl_show_view_state && access_has_project_level( config_get( 'change_view_status_threshold' ) ); if ( $tpl_show_product_version ) { $tpl_product_version_released_mask = VERSION_RELEASED; if ( access_has_project_level( config_get( 'report_issues_for_unreleased_versions_threshold' ) ) ) { $tpl_product_version_released_mask = VERSION_ALL; } } $tpl_formatted_bug_id = $tpl_show_id ? bug_format_id( $f_bug_id ) : ''; $tpl_project_name = $tpl_show_project ? string_display_line( project_get_name( $tpl_bug->project_id ) ) : ''; echo '
'; echo '
'; echo form_security_field( 'bug_update' ); echo ''; echo ''; echo ''; # Submit Button if ( $tpl_top_buttons_enabled ) { echo ''; } event_signal( 'EVENT_UPDATE_BUG_FORM_TOP', array( $tpl_bug_id, true ) ); if ( $tpl_show_id || $tpl_show_project || $tpl_show_category || $tpl_show_view_state || $tpl_show_date_submitted | $tpl_show_last_updated ) { # # Titles for Bug Id, Project Name, Category, View State, Date Submitted, Last Updated # echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; # # Values for Bug Id, Project Name, Category, View State, Date Submitted, Last Updated # echo ''; # Bug ID echo ''; # Project Name echo ''; # Category echo ''; # View State echo ''; # Date Submitted echo ''; # Date Updated echo ''; echo ''; # spacer echo ''; } # # Reporter # if ( $tpl_show_reporter ) { echo ''; $t_spacer = 4; if ( $tpl_show_reporter ) { # Reporter echo ''; echo ''; } else { $t_spacer += 2; } # spacer echo ''; echo ''; } # # Assigned To, Due Date # if ( $tpl_show_handler || $tpl_show_due_date ) { echo ''; $t_spacer = 2; # Assigned To echo ''; echo ''; if ( $tpl_show_due_date ) { # Due Date echo ''; if ( bug_is_overdue( $tpl_bug_id ) ) { echo ''; } else { $t_spacer += 2; } # spacer echo ''; echo ''; } # # Priority, Severity, Reproducibility # if ( $tpl_show_priority || $tpl_show_severity || $tpl_show_reproducibility ) { echo ''; $t_spacer = 0; if ( $tpl_show_priority ) { # Priority echo ''; echo ''; } else { $t_spacer += 2; } if ( $tpl_show_severity ) { # Severity echo ''; echo ''; } else { $t_spacer += 2; } if ( $tpl_show_reproducibility ) { # Reproducibility echo ''; echo ''; } else { $t_spacer += 2; } # spacer if ( $t_spacer > 0 ) { echo ''; } echo ''; } # # Status, Resolution # if ( $tpl_show_status || $tpl_show_resolution ) { echo ''; $t_spacer = 2; if ( $tpl_show_status ) { # Status echo ''; echo ''; } else { $t_spacer += 2; } if ( $tpl_show_resolution ) { # Resolution echo ''; echo ''; } else { $t_spacer += 2; } # spacer if ( $t_spacer > 0 ) { echo ''; } echo ''; } # # Projection, ETA # if ( $tpl_show_projection || $tpl_show_eta ) { echo ''; $t_spacer = 2; if ( $tpl_show_projection ) { # Projection echo ''; echo ''; } else { $t_spacer += 2; } # ETA if ( $tpl_show_eta ) { echo ''; echo ''; } else { $t_spacer += 2; } # spacer echo ''; echo ''; } # # Platform, OS, OS Version # if ( $tpl_show_platform || $tpl_show_os || $tpl_show_os_version ) { echo ''; $t_spacer = 0; if ( $tpl_show_platform ) { # Platform echo ''; echo ''; } else { $t_spacer += 2; } if ( $tpl_show_os ) { # Operating System echo ''; echo ''; } else { $t_spacer += 2; } if ( $tpl_show_os_version ) { # OS Version echo ''; echo ''; } else { $t_spacer += 2; } # spacer if ( $t_spacer > 0 ) { echo ''; } echo ''; } # # Product Version, Product Build # if ( $tpl_show_product_version || $tpl_show_product_build ) { echo ''; $t_spacer = 2; # Product Version or Product Build, if version is suppressed if ( $tpl_show_product_version ) { echo ''; echo ''; } else { $t_spacer += 2; } if ( $tpl_show_product_build ) { echo ''; echo ''; } else { $t_spacer += 2; } # spacer echo ''; echo ''; } # # Target Versiom, Fixed in Version # if ( $tpl_show_target_version || $tpl_show_fixed_in_version ) { echo ''; $t_spacer = 2; # Target Version if ( $tpl_show_target_version ) { echo ''; echo ''; } else { $t_spacer += 2; } # Fixed in Version if ( $tpl_show_fixed_in_version ) { echo ''; echo ''; } else { $t_spacer += 2; } # spacer echo ''; echo ''; } event_signal( 'EVENT_UPDATE_BUG_FORM', array( $tpl_bug_id, true ) ); # spacer echo ''; # Summary if ( $tpl_show_summary ) { echo ''; echo ''; echo ''; } # Description if ( $tpl_show_description ) { echo ''; echo ''; echo ''; } # Steps to Reproduce if ( $tpl_show_steps_to_reproduce ) { echo ''; echo ''; echo ''; } # Additional Information if ( $tpl_show_additional_information ) { echo ''; echo ''; echo ''; } echo ''; # Custom Fields $t_custom_fields_found = false; $t_related_custom_field_ids = custom_field_get_linked_ids( $tpl_bug->project_id ); foreach ( $t_related_custom_field_ids as $t_id ) { $t_def = custom_field_get_definition( $t_id ); if ( ( $t_def['display_update'] || $t_def['require_update'] ) && custom_field_has_write_access( $t_id, $tpl_bug_id ) ) { $t_custom_fields_found = true; echo ''; echo ''; } } # foreach( $t_related_custom_field_ids as $t_id ) if ( $t_custom_fields_found ) { # spacer echo ''; } # custom fields found # Bugnote Text Box echo ''; echo ''; echo ''; # Bugnote Private Checkbox (if permitted) if ( access_has_bug_level( config_get( 'private_bugnote_threshold' ), $tpl_bug_id ) ) { echo ''; echo ''; echo ''; } # Time Tracking (if permitted) if ( config_get('time_tracking_enabled') ) { if ( access_has_bug_level( config_get( 'time_tracking_edit_threshold' ), $tpl_bug_id ) ) { echo ''; echo ''; echo ''; } } event_signal( 'EVENT_BUGNOTE_ADD_FORM', array( $tpl_bug_id ) ); # Submit Button if ( $tpl_bottom_buttons_enabled ) { echo ''; } echo '
'; echo ''; echo ''; echo lang_get( 'updating_bug_advanced_title' ); echo ''; print_bracket_link( string_get_bug_view_url( $tpl_bug_id ), lang_get( 'back_to_bug_link' ) ); echo '
'; echo ''; echo '
', $tpl_show_id ? lang_get( 'id' ) : '', '', $tpl_show_project ? lang_get( 'email_project' ) : '', '', $tpl_show_category ? lang_get( 'category' ) : '', '', $tpl_show_view_state ? lang_get( 'view_status' ) : '', '', $tpl_show_date_submitted ? lang_get( 'date_submitted' ) : '', '', $tpl_show_last_updated ? lang_get( 'last_update' ) : '', '
', $tpl_formatted_bug_id, '', $tpl_project_name, ''; if ( $tpl_show_category ) { echo ''; } echo ''; if ( $tpl_can_change_view_state ) { echo ''; } else if ( $tpl_show_view_state ) { echo $tpl_view_state; } echo '', $tpl_show_date_submitted ? date( config_get( 'normal_date_format' ), $tpl_bug->date_submitted ) : '', '', $tpl_show_last_updated ? date( config_get( 'normal_date_format' ), $tpl_bug->last_updated ) : '', '
', lang_get( 'reporter' ), ''; # Do not allow the bug's reporter to edit the Reporter field # when limit_reporters is ON if( ON == config_get( 'limit_reporters' ) && !access_has_project_level( REPORTER + 1, $tpl_bug->project_id ) ) { echo string_attribute( user_get_name( $tpl_bug->reporter_id ) ); } else { if ( ON == config_get( 'use_javascript' ) ) { $t_username = prepare_user_name( $tpl_bug->reporter_id ); echo ajax_click_to_edit( $t_username, 'reporter_id', 'entrypoint=issue_reporter_combobox&issue_id=' . $tpl_bug_id ); } else { echo ''; } } echo ' 
', lang_get( 'assigned_to' ), ''; if ( access_has_project_level( config_get( 'update_bug_assign_threshold', config_get( 'update_bug_threshold' ) ) ) ) { echo ''; } else { echo $tpl_handler_name; } echo '', lang_get( 'due_date' ), ''; } else { echo ''; } if ( access_has_bug_level( config_get( 'due_date_update_threshold' ), $tpl_bug_id ) ) { $t_date_to_display = ''; if ( !date_is_null( $tpl_bug->due_date ) ) { $t_date_to_display = date( config_get( 'calendar_date_format' ), $tpl_bug->due_date ); } echo ''; date_print_calendar(); date_finish_calendar( 'due_date', 'trigger'); } else { if ( !date_is_null( $tpl_bug->due_date ) ) { echo date( config_get( 'short_date_format' ), $tpl_bug->due_date ); } } echo ' 
', lang_get( 'priority' ), '', '', lang_get( 'severity' ), '', '', lang_get( 'reproducibility' ), ' 
', lang_get( 'status' ), ''; print_status_option_list( 'status', $tpl_bug->status, access_can_close_bug( $tpl_bug ), $tpl_bug->project_id ); echo '', lang_get( 'resolution' ), ' 
'; echo lang_get( 'projection' ); echo '', lang_get( 'eta' ), '', ' 
', lang_get( 'platform' ), ''; if ( config_get( 'allow_freetext_in_profile_fields' ) == OFF ) { echo ''; } else { projax_autocomplete( 'platform_get_with_prefix', 'platform', array( 'value' => string_attribute( $tpl_bug->platform ), 'size' => '16', 'maxlength' => '32', 'tabindex' => helper_get_tab_index_value() ) ); } echo '', lang_get( 'os' ), ''; if ( config_get( 'allow_freetext_in_profile_fields' ) == OFF ) { echo ''; } else { projax_autocomplete( 'os_get_with_prefix', 'os', array( 'value' => string_attribute( $tpl_bug->os ), 'size' => '16', 'maxlength' => '32', 'tabindex' => helper_get_tab_index_value() ) ); } echo '', lang_get( 'os_version' ), ''; if ( config_get( 'allow_freetext_in_profile_fields' ) == OFF ) { echo ''; } else { projax_autocomplete( 'os_build_get_with_prefix', 'os_build', array( 'value' => string_attribute( $tpl_bug->os_build ), 'size' => '16', 'maxlength' => '16', 'tabindex' => helper_get_tab_index_value() ) ); } echo ' 
', lang_get( 'product_version' ), '', '', lang_get( 'product_build' ), ''; echo ''; echo ' 
', lang_get( 'target_version' ), ''; echo lang_get( 'fixed_in_version' ); echo ''; echo ''; echo ' 
', lang_get( 'summary' ), '', ''; echo '
', lang_get( 'description' ), ''; echo ''; echo '
', lang_get( 'steps_to_reproduce' ), ''; echo ''; echo '
', lang_get( 'additional_information' ), ''; echo ''; echo '
'; if ( $t_def['require_update'] ) { echo '*'; } echo string_display( lang_get_defaulted( $t_def['name'] ) ); echo ''; print_custom_field_input( $t_def, $tpl_bug_id ); echo '
', lang_get( 'add_bugnote_title' ), '
', lang_get( 'private' ), ''; $t_default_bugnote_view_status = config_get( 'default_bugnote_view_status' ); if ( access_has_bug_level( config_get( 'set_view_status_threshold' ), $tpl_bug_id ) ) { echo ''; echo lang_get( 'private' ); } else { echo get_enum_element( 'view_state', $t_default_bugnote_view_status ); } echo '
', lang_get( 'time_tracking' ), ' (HH:MM)
'; echo ''; echo '
'; include( dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'bugnote_view_inc.php' ); html_page_bottom(); last_visited_issue( $tpl_bug_id );