diff options
author | lpsolit%gmail.com <> | 2005-07-22 14:13:36 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-07-22 14:13:36 +0200 |
commit | e7d2b86c2765c3a8e853526683ceacdb260a7996 (patch) | |
tree | 90fc70fd199e7bfc5ae5656ceadafbe6c8afe4d7 /process_bug.cgi | |
parent | d0303ab3ecb54eef2ed1b5e55839eada16748416 (diff) | |
download | bugzilla-e7d2b86c2765c3a8e853526683ceacdb260a7996.tar.gz bugzilla-e7d2b86c2765c3a8e853526683ceacdb260a7996.tar.xz |
Bug 301507: Move PutHeader and PutFooter into Template.pm - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=justdave
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-x | process_bug.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/process_bug.cgi b/process_bug.cgi index 7b4b299c3..c8e1e8114 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -592,7 +592,7 @@ if (defined $cgi->param('action')) { if (Param("move-enabled") && $action eq Param("move-button-text")) { $cgi->param('buglist', join (":", @idlist)); do "move.pl" || die "Error executing move.cgi: $!"; - PutFooter(); + $template->put_footer(); exit; } |