Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
eaf1ffb2
Commit
eaf1ffb2
authored
Feb 27, 2001
by
dave%intrec.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix for bug 67482: parens in user's real name was confusing bugzilla. Patch by jake@acutex.net
parent
0a6d0a29
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
+2
-5
bug_form.pl
bug_form.pl
+2
-5
No files found.
bug_form.pl
View file @
eaf1ffb2
...
...
@@ -119,6 +119,7 @@ my $assignedtoid = $bug{'assigned_to'};
my
$reporterid
=
$bug
{
'reporter'
};
my
$qacontactid
=
$bug
{
'qa_contact'
};
$bug
{
'assigned_to_email'
}
=
DBID_to_name
(
$assignedtoid
);
$bug
{
'assigned_to'
}
=
DBID_to_real_or_loginname
(
$bug
{
'assigned_to'
});
$bug
{
'reporter'
}
=
DBID_to_real_or_loginname
(
$bug
{
'reporter'
});
...
...
@@ -444,11 +445,7 @@ if ($canedit || $::userid == $assignedtoid ||
Resolve bug, mark it as duplicate of bug #
<INPUT NAME=dup_id SIZE=6 ONCHANGE=\"document.changeform.knob\[$knum\].checked=true\"><br>\n"
;
$knum
++
;
if
(
$bug
{
'assigned_to'
}
=~
/(.*)\((.*)\)/
)
{
$bug
{
'assigned_to'
}
=
$1
;
chop
(
$bug
{
'assigned_to'
});
}
my
$assign_element
=
"<INPUT NAME=\"assigned_to\" SIZE=32 ONCHANGE=\"document.changeform.knob\[$knum\].checked=true\" VALUE=\"$bug{'assigned_to'}\">"
;
my
$assign_element
=
"<INPUT NAME=\"assigned_to\" SIZE=32 ONCHANGE=\"document.changeform.knob\[$knum\].checked=true\" VALUE=\"$bug{'assigned_to_email'}\">"
;
print
"<INPUT TYPE=radio NAME=knob VALUE=reassign>
<A HREF=\"bug_status.html#assigned_to\">Reassign</A> bug to
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment