Closed
Bug 182946
Opened 23 years ago
Closed 23 years ago
fix regressions from bug 171493 (Bug.pm/show_bug.cgi/bug_form.pl reorg)
Categories
(Bugzilla :: Creating/Changing Bugs, defect)
Tracking
()
RESOLVED
FIXED
Bugzilla 2.18
People
(Reporter: justdave, Assigned: bbaetz)
References
Details
(Keywords: regression)
Attachments
(1 file)
|
4.29 KB,
patch
|
justdave
:
review+
|
Details | Diff | Splinter Review |
On bugzilla-tip, any changes submitted to a bug clears the cc_accessible flag on
that bug.
I'm not flagging this as security because this results in an installation which
is potentially more secure than you want, rather than less secure.
| Reporter | ||
Comment 1•23 years ago
|
||
OK, more research shows the value does get put into the database according to
what's on the form, however, the form is always getting pre-populated with the
checkbox empty, regardless of the existing value. This suggests either the
template is pulling the wrong value or the new Bug.pm isn't loading it...
| Reporter | ||
Updated•23 years ago
|
Keywords: regression
Summary: cc_accessible gets cleared when changing a bug → cc_accessible not populated in show_bug (it's always cleared)
| Assignee | ||
Comment 2•23 years ago
|
||
Oh, yeah, umm.
I noticed this yesterday. Fixed in the patch for bug 158499, as well as a few
other minor issues.
Fix is to s/./,/ in Bug.pm, where we pull stuff out of the DB. 'oops'. If that
doesn't get reviewed today, I'll pull out the regression fixes separately.
| Assignee | ||
Comment 3•23 years ago
|
||
This should fix:
- cclist_accessible always reported |undef| ('.' instead of ',')
- the js for changing the assignee was wrong (assigned_to_email vs
assigned_to.email, from a previous iteraton)
- blocking bugs weren't shown - this was another case of xml vs show_bug having
different field names. I changed Bug.pm (and thus the xml output), because it
was easier than also changing process_bug.
- There was an extra </a> for the target milestone milestoneurl link
I pulled this out of the patch for bug 158499
| Assignee | ||
Comment 4•23 years ago
|
||
-> me, and changing summary - I suspect that more people will notice blockers
being removed anyway ;)
Assignee: myk → bbaetz
Summary: cc_accessible not populated in show_bug (it's always cleared) → fix regressions from Bug.pm
Target Milestone: --- → Bugzilla 2.18
| Reporter | ||
Updated•23 years ago
|
Attachment #108001 -
Flags: review+
| Reporter | ||
Updated•23 years ago
|
Flags: approval+
| Assignee | ||
Comment 5•23 years ago
|
||
Fixed
Status: NEW → RESOLVED
Closed: 23 years ago
Resolution: --- → FIXED
Summary: fix regressions from Bug.pm → fix regressions from bug 171493 (Bug.pm/show_bug.cgi/bug_form.pl reorg)
| Assignee | ||
Comment 6•23 years ago
|
||
I also checked in a one-line typo-fix in Bug.pm pointed out on irc by tm:
- $self->{'any_flags_requesteeable'} = grep($_->{'is_requesteeble'}, @$flag_types);
+ $self->{'any_flags_requesteeble'} = grep($_->{'is_requesteeble'}, @$flag_types);
Comment 7•23 years ago
|
||
*** Bug 183529 has been marked as a duplicate of this bug. ***
Updated•13 years ago
|
QA Contact: matty_is_a_geek → default-qa
You need to log in
before you can comment on or make changes to this bug.
Description
•