Closed
Bug 55786
Opened 24 years ago
Closed 24 years ago
Cannot commit when noneditable parts change.
Categories
(Bugzilla :: Bugzilla-General, defect, P3)
Bugzilla
Bugzilla-General
Tracking
()
People
(Reporter: burnus, Assigned: justdave)
Details
(Whiteboard: 2.14)
Hi,
In my case the entry of the Assigned changed. This value is static and I cannot
change it. But I get this message:
-----------------
Only the owner or submitter of the bug, or a sufficiently empowered user, may
make that change to the assigned_to field.
Old value: leaf@netscape.com
New value: leaf@netscape.com (Daniel
-----------------
I encountered this with bug 51677.
Comment 1•24 years ago
|
||
Tobias is this still happening in the latest nightlies? (works for everyone else)
Severity: blocker → critical
Comment 2•24 years ago
|
||
Yes, this is in fact a bug in the bugzilla code. It is caused by the fact that
Leaf had ()'s in his Real Name "Daniel (leaf) Nunes". The patch attached to bug
63524 addresses this problem as well as the enhancement it is intended to provide.
The block of code at fault is:
if ( $bug{'assigned_to'} =~ /(.*)\((.*)\)/ ) {
$bug{'assigned_to'} = $1;
chop($bug{'assigned_to'});
}
Updated•24 years ago
|
Whiteboard: 2.14
Comment 3•24 years ago
|
||
That bug is newer, but it describes the problem better IMHO.
*** This bug has been marked as a duplicate of 67482 ***
Status: NEW → RESOLVED
Closed: 24 years ago
Resolution: --- → DUPLICATE
Assignee | ||
Comment 6•23 years ago
|
||
moving to Bugzilla product
reassign to default owner/qa for INVALID/WONTFIX/WORKSFORME/DUPLICATE
Assignee: tara → justdave
Component: Bugzilla → Bugzilla-General
Product: Webtools → Bugzilla
Version: other → unspecified
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
•