Skip to content

Commit

Permalink
Modified bug_assign and bug_close to use g_quick_proceed.
Browse files Browse the repository at this point in the history
git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@761 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
Kenzaburo Ito committed Mar 6, 2002
1 parent 5dec38e commit aa6a596
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions bug_assign.php
Expand Up @@ -37,6 +37,10 @@

# Determine which view page to redirect back to.
$t_redirect_url = get_view_redirect_url( $f_id );

if (( ON == $g_quick_proceed )&&( $result )) {
print_header_redirect( $t_redirect_url );
}
?>
<?php print_page_top1() ?>
<?php
Expand Down
3 changes: 3 additions & 0 deletions bug_close.php
Expand Up @@ -31,6 +31,9 @@
email_close( $f_id );

$t_redirect_url = $g_view_all_bug_page;
if (( ON == $g_quick_proceed )&&( $result )) {
print_header_redirect( $t_redirect_url );
}
?>
<?php print_page_top1() ?>
<?php
Expand Down
1 change: 1 addition & 0 deletions doc/ChangeLog
Expand Up @@ -27,6 +27,7 @@ Mantis
* Modified edit project links to use the project name instead of the [edit] link.
* Modified default/config_inc1.php to have more more css global variables.
* Modified wordwrap to use built-in php function if available.
* Modified bug_assign and bug_close to use g_quick_proceed.
* Added project name as supplementary info next to bug id in buglist for "All projects" option
* Added Basic Authentication patch.
* Added CSV Export patch.
Expand Down

0 comments on commit aa6a596

Please sign in to comment.