Closed
Bug 253544
Opened 20 years ago
Closed 20 years ago
Make private attachment activity log entries private as well
Categories
(Bugzilla :: Bugzilla-General, defect)
Tracking
()
RESOLVED
FIXED
Bugzilla 2.18
People
(Reporter: bugreport, Assigned: bugreport)
Details
(Whiteboard: [does not affect 2.16.x] [fixed in 2.18rc3] [fixed in 2.19.1])
Attachments
(1 file, 1 obsolete file)
1.46 KB,
patch
|
zach
:
review+
justdave
:
review+
|
Details | Diff | Splinter Review |
Assignee | ||
Comment 1•20 years ago
|
||
The log can show the when and who, but added/removed should be blanked at
display-time
Status: NEW → ASSIGNED
Flags: blocking2.18?
Target Milestone: --- → Bugzilla 2.18
Assignee | ||
Comment 2•20 years ago
|
||
Do this in CGI.pm in GetBugActivity
Assignee | ||
Comment 3•20 years ago
|
||
Assignee | ||
Updated•20 years ago
|
Attachment #154659 -
Flags: review?
Assignee | ||
Updated•20 years ago
|
Group: webtools-security
Assignee | ||
Updated•20 years ago
|
Attachment #154659 -
Flags: review?(justdave)
Updated•20 years ago
|
Flags: blocking2.18? → blocking2.18+
Comment 4•20 years ago
|
||
You want people to mark r+ on patches with variables called $extra1 and $extra2?
Argh!
Comment 5•20 years ago
|
||
Comment on attachment 154659 [details] [diff] [review]
remove private attachment rows at display time
>@@ -157,7 +157,7 @@
> my $alias = $id;
> if (!detaint_natural($id)) {
> $id = BugAliasToID($alias);
>- $id || ThrowUserError("invalid_bug_id_or_alias", {'bug_id' => $id});
>+ $id || ThrowUserError("invalid_bug_id_or_alias", {'bug_id' => $alias});
> }
>
> # Modify the calling code's original variable to contain the trimmed,
Remove this since it doesn't belong in this bug (and has already been checked
in)
>+ my $extra1 = "";
>+ my $extra2 = "";
As kiko said, could these be somewhat more descriptive?
Attachment #154659 -
Flags: review?(justdave) → review-
Assignee | ||
Updated•20 years ago
|
Attachment #154659 -
Attachment is obsolete: true
Attachment #154659 -
Flags: review?
Assignee | ||
Comment 6•20 years ago
|
||
Assignee | ||
Updated•20 years ago
|
Attachment #155244 -
Flags: review?(zach)
Comment 7•20 years ago
|
||
Comment on attachment 155244 [details] [diff] [review]
v2
r=zach
Attachment #155244 -
Flags: review?(zach) → review+
Updated•20 years ago
|
Whiteboard: patch awaiting checkin
Comment 8•20 years ago
|
||
holding approval for release day
Flags: approval?
Flags: approval2.18?
Whiteboard: patch awaiting checkin → [does not affect 2.16.x] [ready for 2.18rc3] [ready for 2.19.1]
Comment 9•20 years ago
|
||
Checked in on trunk:
Checking in CGI.pl;
/cvsroot/mozilla/webtools/bugzilla/CGI.pl,v <-- CGI.pl
new revision: 1.216; previous revision: 1.215
done
and 2.18 branch:
Checking in CGI.pl;
/cvsroot/mozilla/webtools/bugzilla/CGI.pl,v <-- CGI.pl
new revision: 1.211.2.2; previous revision: 1.211.2.1
done
Status: ASSIGNED → RESOLVED
Closed: 20 years ago
Flags: approval?
Flags: approval2.18?
Flags: approval2.18+
Flags: approval+
Resolution: --- → FIXED
Whiteboard: [does not affect 2.16.x] [ready for 2.18rc3] [ready for 2.19.1] → [does not affect 2.16.x] [fixed in 2.18rc3] [fixed in 2.19.1]
Updated•12 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
•