Skip to content

Commit

Permalink
Fix 4317 based on Bastian Pfennigschmidt patch
Browse files Browse the repository at this point in the history
git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2877 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
mantis committed Aug 21, 2004
1 parent 0df3ade commit 673887d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions bug_report.php
Expand Up @@ -6,7 +6,7 @@
# See the README and LICENSE files for details

# --------------------------------------------------------
# $Id: bug_report.php,v 1.37 2004-08-18 13:54:41 narcissus Exp $
# $Id: bug_report.php,v 1.38 2004-08-21 13:27:25 prichards Exp $
# --------------------------------------------------------

# This page stores the reported bug
Expand Down Expand Up @@ -155,9 +155,12 @@
<div align="center">
<?php
echo lang_get( 'operation_successful' ) . '<br />';
print_bracket_link( string_get_bug_view_url( $t_bug_id ), lang_get( 'view_submitted_bug_link' ) . " $t_bug_id", true );
print_bracket_link( 'view_all_bug_page.php', lang_get( 'view_bugs_link' ) );

if ( $f_report_stay ) {
?>
<p>
<form method="post" action="<?php echo string_get_bug_report_url() ?>">
<input type="hidden" name="category" value="<?php echo $t_bug_data->category ?>" />
<input type="hidden" name="severity" value="<?php echo $t_bug_data->severity ?>" />
Expand All @@ -172,10 +175,8 @@
<input type="hidden" name="view_state" value="<?php echo $t_bug_data->view_state ?>" />
<input type="submit" class="button" value="<?php echo lang_get( 'report_more_bugs' ) ?>" />
</form>
</p>
<?php
} else {
print_bracket_link( string_get_bug_view_url( $t_bug_id ), lang_get( 'view_submitted_bug_link' ) . " $t_bug_id" );
print_bracket_link( 'view_all_bug_page.php', lang_get( 'view_bugs_link' ) );
}
?>
</div>
Expand Down

0 comments on commit 673887d

Please sign in to comment.