summaryrefslogtreecommitdiffstats
path: root/new_bug.cgi
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2017-07-04 01:48:52 +0200
committerDylan William Hardison <dylan@hardison.net>2017-07-07 00:19:20 +0200
commita6f98de0d4e842351222b0173a1fff151da8738e (patch)
tree6d7b2b7885a750826655cf3896d7fd72791623b3 /new_bug.cgi
parent3ae73efc60d570fc3f0e918be3889f0ae5a9f263 (diff)
downloadbugzilla-a6f98de0d4e842351222b0173a1fff151da8738e.tar.gz
bugzilla-a6f98de0d4e842351222b0173a1fff151da8738e.tar.xz
Revert "Bug 1365345 - Modal Bug Entry Prototype"
Diffstat (limited to 'new_bug.cgi')
-rw-r--r--new_bug.cgi23
1 files changed, 2 insertions, 21 deletions
diff --git a/new_bug.cgi b/new_bug.cgi
index 2a56550e6..ec67980b9 100644
--- a/new_bug.cgi
+++ b/new_bug.cgi
@@ -43,27 +43,8 @@ my $cgi = Bugzilla->cgi;
my $template = Bugzilla->template;
my $vars = {};
-if (lc($cgi->request_method) eq 'post') {
- my $token = $cgi->param('token');
- check_hash_token($token, ['new_bug']);
- my $new_bug = Bugzilla::Bug->create({
- short_desc => $cgi->param('short_desc'),
- product => $cgi->param('product'),
- component => $cgi->param('component'),
- bug_severity => 'normal',
- groups => [],
- op_sys => 'Unspecified',
- rep_platform => 'Unspecified',
- version => join(' ', split('_', $cgi->param('version'))),
- cc => [],
- comment => $cgi->param('comment'),
- });
- delete_token($token);
- print $cgi->redirect(correct_urlbase() . 'show_bug.cgi?id='.$new_bug->bug_id);
-} else {
- print $cgi->header();
+print $cgi->header();
$template->process("bug/new_bug.html.tmpl",
$vars)
- or ThrowTemplateError($template->error());
-}
+ or ThrowTemplateError($template->error());