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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ivan Ivlev
bugzilla
Commits
4a206aa8
Commit
4a206aa8
authored
Jun 21, 2000
by
endico%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
was converting from dbid to login + real name. Remove the real name
parent
a9379622
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
Bug.pm
Bug.pm
+2
-2
Bug.pm
Bugzilla/Bug.pm
+2
-2
No files found.
Bug.pm
View file @
4a206aa8
...
@@ -144,8 +144,8 @@ sub initBug {
...
@@ -144,8 +144,8 @@ sub initBug {
$self
->
{
'status_whiteboard'
}
=
QuoteXMLChars
(
$self
->
{
'status_whiteboard'
});
$self
->
{
'status_whiteboard'
}
=
QuoteXMLChars
(
$self
->
{
'status_whiteboard'
});
}
}
$self
->
{
'assigned_to'
}
=
&::
DBID_to_
real_or_login
name
(
$self
->
{
'assigned_to'
});
$self
->
{
'assigned_to'
}
=
&::
DBID_to_name
(
$self
->
{
'assigned_to'
});
$self
->
{
'reporter'
}
=
&::
DBID_to_
real_or_login
name
(
$self
->
{
'reporter'
});
$self
->
{
'reporter'
}
=
&::
DBID_to_name
(
$self
->
{
'reporter'
});
my
$ccSet
=
new
RelationSet
;
my
$ccSet
=
new
RelationSet
;
$ccSet
->
mergeFromDB
(
"select who from cc where bug_id=$bug_id"
);
$ccSet
->
mergeFromDB
(
"select who from cc where bug_id=$bug_id"
);
...
...
Bugzilla/Bug.pm
View file @
4a206aa8
...
@@ -144,8 +144,8 @@ sub initBug {
...
@@ -144,8 +144,8 @@ sub initBug {
$self
->
{
'status_whiteboard'
}
=
QuoteXMLChars
(
$self
->
{
'status_whiteboard'
});
$self
->
{
'status_whiteboard'
}
=
QuoteXMLChars
(
$self
->
{
'status_whiteboard'
});
}
}
$self
->
{
'assigned_to'
}
=
&::
DBID_to_
real_or_login
name
(
$self
->
{
'assigned_to'
});
$self
->
{
'assigned_to'
}
=
&::
DBID_to_name
(
$self
->
{
'assigned_to'
});
$self
->
{
'reporter'
}
=
&::
DBID_to_
real_or_login
name
(
$self
->
{
'reporter'
});
$self
->
{
'reporter'
}
=
&::
DBID_to_name
(
$self
->
{
'reporter'
});
my
$ccSet
=
new
RelationSet
;
my
$ccSet
=
new
RelationSet
;
$ccSet
->
mergeFromDB
(
"select who from cc where bug_id=$bug_id"
);
$ccSet
->
mergeFromDB
(
"select who from cc where bug_id=$bug_id"
);
...
...
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