From 3ae73efc60d570fc3f0e918be3889f0ae5a9f263 Mon Sep 17 00:00:00 2001 From: Sebastin Santy Date: Tue, 4 Jul 2017 01:11:09 +0530 Subject: Bug 1365345 - Modal Bug Entry Prototype --- new_bug.cgi | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) (limited to 'new_bug.cgi') diff --git a/new_bug.cgi b/new_bug.cgi index ec67980b9..2a56550e6 100644 --- a/new_bug.cgi +++ b/new_bug.cgi @@ -43,8 +43,27 @@ my $cgi = Bugzilla->cgi; my $template = Bugzilla->template; my $vars = {}; -print $cgi->header(); +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(); $template->process("bug/new_bug.html.tmpl", $vars) - or ThrowTemplateError($template->error()); + or ThrowTemplateError($template->error()); +} -- cgit v1.2.3-24-g4f1b