diff options
author | travis%sedsystems.ca <> | 2005-02-17 02:00:20 +0100 |
---|---|---|
committer | travis%sedsystems.ca <> | 2005-02-17 02:00:20 +0100 |
commit | cb395034dca34035f3c55a92999edf7df037a141 (patch) | |
tree | dc6afb7302bf055e17ee6db331da7e73bda11462 /Bugzilla | |
parent | d40e52583a3a290ef666fe4b2b34bb61d59d0ea5 (diff) | |
download | bugzilla-cb395034dca34035f3c55a92999edf7df037a141.tar.gz bugzilla-cb395034dca34035f3c55a92999edf7df037a141.tar.xz |
Bug 282331 : Old comments get wrapped even if already_wrapped=1
Patch by Jussi Sirpoma <jussi@comlink.fi> r=mkanat a=myk
Diffstat (limited to 'Bugzilla')
-rwxr-xr-x | Bugzilla/Bug.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index 4168cac19..380aa6e32 100755 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -534,7 +534,7 @@ sub GetComments { "SELECT profiles.realname AS name, profiles.login_name AS email, date_format(longdescs.bug_when,'%Y.%m.%d %H:%i') AS time, longdescs.thetext AS body, longdescs.work_time, - isprivate, + isprivate, already_wrapped, date_format(longdescs.bug_when,'%Y%m%d%H%i%s') FROM longdescs, profiles WHERE profiles.userid = longdescs.who |