summaryrefslogtreecommitdiffstats
path: root/globals.pl
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2005-08-31 01:54:06 +0200
committerlpsolit%gmail.com <>2005-08-31 01:54:06 +0200
commit4bf89c1f643b49d4a1716d769718d5b05e106732 (patch)
treed55d25507dc3331bf48dc13e16452cbd3c617198 /globals.pl
parent29a562e5c22fd8437610edb3ceafc8c93ccfd610 (diff)
downloadbugzilla-4bf89c1f643b49d4a1716d769718d5b05e106732.tar.gz
bugzilla-4bf89c1f643b49d4a1716d769718d5b05e106732.tar.xz
Bug 279738: Move GetLongDescriptionAsText() out of globals.pl - Patch by Frédéric Buclin <LpSolit@gmail.com> r=mkanat a=myk
Diffstat (limited to 'globals.pl')
-rw-r--r--globals.pl45
1 files changed, 0 insertions, 45 deletions
diff --git a/globals.pl b/globals.pl
index 6e9dcbeba..ae0a54260 100644
--- a/globals.pl
+++ b/globals.pl
@@ -954,51 +954,6 @@ sub GetBugLink {
}
}
-sub GetLongDescriptionAsText {
- my ($id, $start, $end) = (@_);
- my $result = "";
- my $count = 0;
- my $anyprivate = 0;
- my $dbh = Bugzilla->dbh;
- my ($query) = ("SELECT profiles.login_name, " .
- $dbh->sql_date_format('longdescs.bug_when', '%Y.%m.%d %H:%i') . ", " .
- " longdescs.thetext, longdescs.isprivate, " .
- " longdescs.already_wrapped " .
- "FROM longdescs, profiles " .
- "WHERE profiles.userid = longdescs.who " .
- "AND longdescs.bug_id = $id ");
-
- # $start will be undef for New bugs, and defined for pre-existing bugs.
- if ($start) {
- # If $start is not NULL, obtain the count-index
- # of this comment for the leading "Comment #xxx" line.)
- SendSQL("SELECT count(*) FROM longdescs " .
- " WHERE bug_id = $id AND bug_when <= '$start'");
- ($count) = (FetchSQLData());
-
- $query .= " AND longdescs.bug_when > '$start'"
- . " AND longdescs.bug_when <= '$end' ";
- }
-
- $query .= "ORDER BY longdescs.bug_when";
- SendSQL($query);
- while (MoreSQLData()) {
- my ($who, $when, $text, $isprivate, $work_time, $already_wrapped) =
- (FetchSQLData());
- if ($count) {
- $result .= "\n\n------- Comment #$count from $who".Param('emailsuffix')." ".
- Bugzilla::Util::format_time($when) . " -------\n";
- }
- if (($isprivate > 0) && Param("insidergroup")) {
- $anyprivate = 1;
- }
- $result .= ($already_wrapped ? $text : wrap_comment($text));
- $count++;
- }
-
- return ($result, $anyprivate);
-}
-
# Returns a list of all the legal values for a field that has a
# list of legal values, like rep_platform or resolution.
sub get_legal_field_values {