Closed
Bug 106918
Opened 24 years ago
Closed 23 years ago
Mover handling is borked on move.pl.
Categories
(Bugzilla :: Creating/Changing Bugs, defect, P3)
Tracking
()
RESOLVED
FIXED
Bugzilla 2.18
People
(Reporter: CodeMachine, Assigned: justdave)
Details
Attachments
(1 file, 1 obsolete file)
|
1.43 KB,
patch
|
myk
:
review+
|
Details | Diff | Splinter Review |
When I enter the following for movers:
a@b.com, c@d.com
The code detects c@d.com is a mover on bug_form.pl, but not move.pl. This is
because:
my $movers = Param("movers");
$movers =~ s/\w?,\w?/|/g;
$movers =~ s/@/\@/g;
Those \w should be \s.
There should also be a routine that does this for both sides in globals.pl.
For both, that should probably be (\s)* too, not (\s)?.
| Reporter | ||
Updated•24 years ago
|
Priority: -- → P3
Target Milestone: --- → Bugzilla 2.18
| Assignee | ||
Comment 1•23 years ago
|
||
Fixes both move.pl and Bug.pm so either format of lists of movers works
| Assignee | ||
Comment 2•23 years ago
|
||
Comment on attachment 112318 [details] [diff] [review]
Patch v1
This is already applied on both mothra and bugscape (had to because someone
needed to move a bug). Seems to work so far, but I'd appreciate a sanitycheck.
Attachment #112318 -
Flags: review?(myk)
| Assignee | ||
Comment 3•23 years ago
|
||
Take 2: move.pl defines user.login for show.xml.tmpl now. Moving actually
works now. :)
Attachment #112318 -
Attachment is obsolete: true
| Assignee | ||
Updated•23 years ago
|
Attachment #112318 -
Flags: review?(myk)
| Assignee | ||
Updated•23 years ago
|
Attachment #112322 -
Flags: review?(myk)
Comment 4•23 years ago
|
||
Comment on attachment 112322 [details] [diff] [review]
Patch v2
This does solve the problem, and for me it also made fixed bug_form.pl to show
the "move" button.
Attachment #112322 -
Flags: review?(myk) → review+
| Assignee | ||
Comment 5•23 years ago
|
||
Checking in Bug.pm;
/cvsroot/mozilla/webtools/bugzilla/Bug.pm,v <-- Bug.pm
new revision: 1.28; previous revision: 1.27
done
Checking in move.pl;
/cvsroot/mozilla/webtools/bugzilla/move.pl,v <-- move.pl
new revision: 1.17; previous revision: 1.16
done
Status: NEW → RESOLVED
Closed: 23 years ago
Resolution: --- → FIXED
| Assignee | ||
Comment 6•20 years ago
|
||
*** Bug 256135 has been marked as a duplicate of this bug. ***
Updated•20 years ago
|
Assignee: myk → justdave
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
•