diff options
author | travis%sedsystems.ca <> | 2005-03-01 06:33:16 +0100 |
---|---|---|
committer | travis%sedsystems.ca <> | 2005-03-01 06:33:16 +0100 |
commit | 81fec28afef6a2cc01efe57b665b7f2f19d8c73a (patch) | |
tree | 0a2d8cf0ba7bcf4b4c83bd275a142152c1e17114 /Bugzilla | |
parent | e9f024d42a579703d86707d757f60e115610d31f (diff) | |
download | bugzilla-81fec28afef6a2cc01efe57b665b7f2f19d8c73a.tar.gz bugzilla-81fec28afef6a2cc01efe57b665b7f2f19d8c73a.tar.xz |
Bug 283567 : Toggling a comment's privacy does nothing (regression from bug 279700)
Patch by : Frederic Buclin <LpSolit@gmail.com> r=mkanat a=justdave
Diffstat (limited to 'Bugzilla')
-rwxr-xr-x | Bugzilla/Bug.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index 307ee4bed..a6758d36f 100755 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -539,6 +539,7 @@ sub GetComments { AS time, longdescs.thetext AS body, longdescs.work_time, isprivate, already_wrapped, " . $dbh->sql_date_format('longdescs.bug_when', '%Y%m%d%H%i%s') . " + AS bug_when FROM longdescs, profiles WHERE profiles.userid = longdescs.who AND longdescs.bug_id = ? |