summaryrefslogtreecommitdiffstats
path: root/process_bug.cgi
diff options
context:
space:
mode:
authormyk%mozilla.org <>2002-03-11 16:33:03 +0100
committermyk%mozilla.org <>2002-03-11 16:33:03 +0100
commit0930c074fa7d8dabed00af2ba39a177a8d00167f (patch)
tree7da1e3717b8e0a3c60470c9aaa15a496c81acb3d /process_bug.cgi
parent861379aee83b8b2da5e6247dc3462847b3e127b2 (diff)
downloadbugzilla-0930c074fa7d8dabed00af2ba39a177a8d00167f.tar.gz
bugzilla-0930c074fa7d8dabed00af2ba39a177a8d00167f.tar.xz
Fix for bug 72184: prevents users from entering too-large comments/descriptions that get rejected by MySQL's MAX_PACKET_SIZE restrictions.
Patch by Myk Melez <myk@mozilla.org>. r=bbaetz,gerv
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-xprocess_bug.cgi2
1 files changed, 2 insertions, 0 deletions
diff --git a/process_bug.cgi b/process_bug.cgi
index f2abb0390..fb3c0e482 100755
--- a/process_bug.cgi
+++ b/process_bug.cgi
@@ -92,6 +92,8 @@ if (defined $::FORM{'dup_id'} && $::FORM{'knob'} eq "duplicate") {
DuplicateUserConfirm();
}
+ValidateComment($::FORM{'comment'});
+
######################################################################
# End Data/Security Validation
######################################################################