summaryrefslogtreecommitdiffstats
path: root/CGI.pl
diff options
context:
space:
mode:
authormkanat%kerio.com <>2005-03-07 22:55:33 +0100
committermkanat%kerio.com <>2005-03-07 22:55:33 +0100
commit5f042e841a435995e62f0cc8e8c4e9bd9f2c9c15 (patch)
tree38a093e9be57478dd7c4be58d53101de0c69484a /CGI.pl
parent494f0e59486cbabfd02aa9a8f410f4e00861f62b (diff)
downloadbugzilla-5f042e841a435995e62f0cc8e8c4e9bd9f2c9c15.tar.gz
bugzilla-5f042e841a435995e62f0cc8e8c4e9bd9f2c9c15.tar.xz
Bug 283924: Move ValidateComment out of CGI.pl
Patch By Max Kanat-Alexander <mkanat@kerio.com> r=LpSolit, a=justdave
Diffstat (limited to 'CGI.pl')
-rw-r--r--CGI.pl10
1 files changed, 0 insertions, 10 deletions
diff --git a/CGI.pl b/CGI.pl
index d650ea08e..652d6c03b 100644
--- a/CGI.pl
+++ b/CGI.pl
@@ -188,16 +188,6 @@ sub ValidateBugID {
}
}
-sub ValidateComment {
- # Make sure a comment is not too large (greater than 64K).
-
- my ($comment) = @_;
-
- if (defined($comment) && length($comment) > 65535) {
- ThrowUserError("comment_too_long");
- }
-}
-
sub PasswordForLogin {
my ($login) = (@_);
SendSQL("select cryptpassword from profiles where login_name = " .