From ed12ad1849d654f8fb710d093c7aaf92f35e56ab Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Fri, 4 Aug 2006 21:28:33 +0000 Subject: Additional fix for bug 347360: No value returned when calling $flag_type->flag_count twice. --- Bugzilla/FlagType.pm | 1 + 1 file changed, 1 insertion(+) (limited to 'Bugzilla/FlagType.pm') diff --git a/Bugzilla/FlagType.pm b/Bugzilla/FlagType.pm index d37e3f27a..9beeaf28e 100644 --- a/Bugzilla/FlagType.pm +++ b/Bugzilla/FlagType.pm @@ -240,6 +240,7 @@ sub flag_count { Bugzilla->dbh->selectrow_array('SELECT COUNT(*) FROM flags WHERE type_id = ?', undef, $self->{'id'}); } + return $self->{'flag_count'}; } sub inclusions { -- cgit v1.2.3-24-g4f1b