Commit fa4b44c6 authored by preed%sigkill.com's avatar preed%sigkill.com

Bug 82172 - Don't allow empty bug summaries. Patch by jocuri@softhome.net (Vlad…

Bug 82172 - Don't allow empty bug summaries. Patch by jocuri@softhome.net (Vlad Dascalu), r=kiko, a=justdave
parent 675c4804
......@@ -523,6 +523,10 @@ if (defined $::FORM{'id'}) {
\@{$::versions{$::FORM{'product'}}});
CheckFormField(\%::FORM, 'op_sys', \@::legal_opsys);
CheckFormFieldDefined(\%::FORM, 'longdesclength');
if (trim($::FORM{'short_desc'}) eq "") {
ThrowUserError("require_summary");
}
}
my $action = '';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment