summaryrefslogtreecommitdiffstats
path: root/globals.pl
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2006-05-08 04:56:04 +0200
committerlpsolit%gmail.com <>2006-05-08 04:56:04 +0200
commit46c78a8c7c42bfdf47ee1f68939aa122371b9662 (patch)
treedc1bdd83e350c3da2b8f7bc5d7d0e79a2569499d /globals.pl
parent0aeb1349243e6996a7a53e9faf01ac8d13e9e9b3 (diff)
downloadbugzilla-46c78a8c7c42bfdf47ee1f68939aa122371b9662.tar.gz
bugzilla-46c78a8c7c42bfdf47ee1f68939aa122371b9662.tar.xz
Bug 332521: Remove GroupIdToName() from globals.pl - Patch by Frédéric Buclin <LpSolit@gmail.com> r=mkanat a=myk
Diffstat (limited to 'globals.pl')
-rw-r--r--globals.pl9
1 files changed, 0 insertions, 9 deletions
diff --git a/globals.pl b/globals.pl
index 38791a93b..ac95974d2 100644
--- a/globals.pl
+++ b/globals.pl
@@ -306,15 +306,6 @@ sub get_legal_field_values {
return @$result_ref;
}
-sub GroupIdToName {
- my ($groupid) = (@_);
- PushGlobalSQLState();
- SendSQL("SELECT name FROM groups WHERE id = $groupid");
- my $name = FetchOneColumn();
- PopGlobalSQLState();
- return $name;
-}
-
############# Live code below here (that is, not subroutine defs) #############
use Bugzilla;