From a29191f9716e49c32f301217254903a5c7dd8e2b Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Tue, 28 Oct 2008 06:31:02 +0000 Subject: [PATCH] The last patch was missing a "use Scalar::Util". --- Bugzilla/DB/Mysql.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Bugzilla/DB/Mysql.pm b/Bugzilla/DB/Mysql.pm index c01fc2a270..81b5d232bf 100644 --- a/Bugzilla/DB/Mysql.pm +++ b/Bugzilla/DB/Mysql.pm @@ -48,6 +48,8 @@ use Bugzilla::Util; use Bugzilla::Error; use Bugzilla::DB::Schema::Mysql; +use Scalar::Util qw(max); + # This is how many comments of MAX_COMMENT_LENGTH we expect on a single bug. # In reality, you could have a LOT more comments than this, because # MAX_COMMENT_LENGTH is big. -- 2.47.2