Closed
Bug 279700
Opened 20 years ago
Closed 20 years ago
Move GetComments from globals.pl into Bugzilla::Bug
Categories
(Bugzilla :: Creating/Changing Bugs, enhancement)
Tracking
()
RESOLVED
FIXED
Bugzilla 2.20
People
(Reporter: mkanat, Assigned: mkanat)
References
Details
Attachments
(1 file)
(deleted),
patch
|
goobix
:
review+
|
Details | Diff | Splinter Review |
GetComments() is only USED inside of Bugzilla::Bug, anyhow. :-) This should be
easy. I'll probably OO-ify it too, while I'm in there.
Assignee | ||
Updated•20 years ago
|
Assignee: create-and-change → mkanat
Assignee | ||
Comment 1•20 years ago
|
||
Oh, it's also used in process_bug. Whatever. We'll still put it in Bugzilla::Bug.
Status: NEW → ASSIGNED
Assignee | ||
Comment 2•20 years ago
|
||
OK. I just moved GetComments in, because if I OO-ified it, I'd have to mess a
lot with process_bug, and that's not really a part of this bug.
I also removed the SendSQL stuff and changed it to use cool DBI stuff.
Attachment #172327 -
Flags: review?
Updated•20 years ago
|
Flags: approval?
Target Milestone: --- → Bugzilla 2.20
Comment 3•20 years ago
|
||
Comment on attachment 172327 [details] [diff] [review]
Move GetComments and change to use Bugzilla->dbh
As long as you're SURE that we don't need something similar to attachment
160409 [details] [diff] [review] in order to fix an eventual bug 261821, this looks good.
Attachment #172327 -
Flags: review? → review+
Assignee | ||
Comment 4•20 years ago
|
||
Yes, I'm sure. We always get all data from the object, so it will always be
finished when we're done with it.
Comment 5•20 years ago
|
||
(In reply to comment #4)
> Yes, I'm sure. We always get all data from the object, so it will always be
> finished when we're done with it.
IIRC, the routine in question in bug 261821 was retrieving all of the known data
from the object as well, and it still hit that problem for some reason. But as
long as we're not getting warnings from this, this is good.
Flags: approval? → approval+
Assignee | ||
Comment 6•20 years ago
|
||
It hit (In reply to comment #5)
> IIRC, the routine in question in bug 261821 was retrieving all of the known data
> from the object as well, and it still hit that problem for some reason. But as
> long as we're not getting warnings from this, this is good.
It hit the problem because it was a saved, global handle. (It's explained in
the DBI docs pretty decently, actually.)
Comment 7•20 years ago
|
||
Checking in globals.pl;
/cvsroot/mozilla/webtools/bugzilla/globals.pl,v <-- globals.pl
new revision: 1.290; previous revision: 1.289
done
Checking in process_bug.cgi;
/cvsroot/mozilla/webtools/bugzilla/process_bug.cgi,v <-- process_bug.cgi
new revision: 1.230; previous revision: 1.229
done
Checking in Bugzilla/Bug.pm;
/cvsroot/mozilla/webtools/bugzilla/Bugzilla/Bug.pm,v <-- Bug.pm
new revision: 1.50; previous revision: 1.49
done
Status: ASSIGNED → RESOLVED
Closed: 20 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•