<td align="center" colspan="6">
<?php 
html_buttons_view_bug_page($f_bug_id);
?>
	</td>
</tr>
</table>

<?php 
$t_mantis_dir = dirname(__FILE__) . DIRECTORY_SEPARATOR;
# User list sponsoring the bug
include $t_mantis_dir . 'bug_sponsorship_list_view_inc.php';
# Bug Relationships
# MASC RELATIONSHIP
if (ON == config_get('enable_relationship')) {
    relationship_view_box($f_bug_id);
}
# MASC RELATIONSHIP
# File upload box
if (!bug_is_readonly($f_bug_id)) {
    include $t_mantis_dir . 'bug_file_upload_inc.php';
}
# User list monitoring the bug
include $t_mantis_dir . 'bug_monitor_list_view_inc.php';
# Bugnotes and "Add Note" box
if ('ASC' == current_user_get_pref('bugnote_order')) {
    include $t_mantis_dir . 'bugnote_view_inc.php';
    include $t_mantis_dir . 'bugnote_add_inc.php';
} else {
    include $t_mantis_dir . 'bugnote_add_inc.php';
    include $t_mantis_dir . 'bugnote_view_inc.php';
Esempio n. 2
0
if ($tpl_show_attachments) {
    echo '<tr id="attachments" ', helper_alternate_class(), '>';
    echo '<th class="bug-attachments category">', lang_get('attached_files'), '</th>';
    echo '<td class="bug-attachments" colspan="5">';
    print_bug_attachments_list($tpl_bug_id);
    echo '</td></tr>';
}
echo '</tbody></table>';
# User list sponsoring the bug
if ($tpl_show_sponsorships_box) {
    define('BUG_SPONSORSHIP_LIST_VIEW_INC_ALLOW', true);
    include $tpl_mantis_dir . 'bug_sponsorship_list_view_inc.php';
}
# Bug Relationships
if ($tpl_show_relationships_box) {
    relationship_view_box($tpl_bug->id);
}
# File upload box
if ($tpl_show_upload_form) {
    define('BUG_FILE_UPLOAD_INC_ALLOW', true);
    include $tpl_mantis_dir . 'bug_file_upload_inc.php';
}
# User list monitoring the bug
if ($tpl_show_monitor_box) {
    define('BUG_MONITOR_LIST_VIEW_INC_ALLOW', true);
    include $tpl_mantis_dir . 'bug_monitor_list_view_inc.php';
}
# Bugnotes and "Add Note" box
if ('ASC' == current_user_get_pref('bugnote_order')) {
    define('BUGNOTE_VIEW_INC_ALLOW', true);
    include $tpl_mantis_dir . 'bugnote_view_inc.php';