summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authormkanat%kerio.com <>2005-03-17 15:56:15 +0100
committermkanat%kerio.com <>2005-03-17 15:56:15 +0100
commit9b837ad975360a2f26783581b4e2ff18a4ef3945 (patch)
tree0789c278afad95e8414dbc7222fc034061f5107f /Bugzilla
parent8bb3cb2ac9f523b9f840b26624a74bd4e8c81de2 (diff)
downloadbugzilla-9b837ad975360a2f26783581b4e2ff18a4ef3945.tar.gz
bugzilla-9b837ad975360a2f26783581b4e2ff18a4ef3945.tar.xz
Bug 286501: Summarize time fails with "Can't bind reference" error
Patch By Tomas Kopal <Tomas.Kopal@altap.cz> r=mkanat, a=justdave
Diffstat (limited to 'Bugzilla')
-rwxr-xr-xBugzilla/Bug.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm
index 31b8f4944..86a121552 100755
--- a/Bugzilla/Bug.pm
+++ b/Bugzilla/Bug.pm
@@ -643,7 +643,8 @@ sub AppendComment ($$$;$$$) {
$dbh->do("UPDATE bugs SET delta_ts = ? WHERE bug_id = ?",
undef, $timestamp, $bugid);
}
-
+
+# This method is private and is not to be used outside of the Bug class.
sub EmitDependList {
my ($myfield, $targetfield, $bug_id) = (@_);
my $dbh = Bugzilla->dbh;