From 6c16eddbad9bcef7d7b2d51dc274451a152524fe Mon Sep 17 00:00:00 2001 From: "mkanat%kerio.com" <> Date: Fri, 3 Mar 2006 07:50:13 +0000 Subject: Bug 328602: Eliminate %::versions and @::legal_versions Patch By Max Kanat-Alexander r=LpSolit, a=myk --- Bugzilla/Version.pm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'Bugzilla/Version.pm') diff --git a/Bugzilla/Version.pm b/Bugzilla/Version.pm index 9492e8135..53bf9a678 100644 --- a/Bugzilla/Version.pm +++ b/Bugzilla/Version.pm @@ -109,6 +109,13 @@ sub check_version { return $version; } +sub distinct_names { + my $dbh = Bugzilla->dbh; + my $names = $dbh->selectcol_arrayref( + 'SELECT DISTINCT value FROM versions ORDER BY value'); + return @$names; +} + 1; __END__ @@ -172,6 +179,17 @@ Version.pm represents a Product Version object. Returns: Bugzilla::Version object. +=item C + + Description: A utility function for getting all the + possible version values from the database, + regardless of what product they're in. + Returns a list with no duplicate versions. + + Params: none + + Returns: A list of strings (versions). + =back =cut -- cgit v1.2.3-24-g4f1b