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
5b1b54e9
Commit
5b1b54e9
authored
Mar 09, 2005
by
mkanat%kerio.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 282145: Bug.pm is too slow for general use
Patch By Max Kanat-Alexander <mkanat@kerio.com> r=gerv, a=myk
parent
5be75754
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
Bug.pm
Bugzilla/Bug.pm
+0
-0
enter_bug.cgi
enter_bug.cgi
+3
-3
No files found.
Bugzilla/Bug.pm
View file @
5b1b54e9
This diff is collapsed.
Click to expand it.
enter_bug.cgi
View file @
5b1b54e9
...
@@ -362,13 +362,13 @@ if ($cloned_bug_id) {
...
@@ -362,13 +362,13 @@ if ($cloned_bug_id) {
$vars
->
{
'short_desc'
}
=
$cloned_bug
->
{
'short_desc'
};
$vars
->
{
'short_desc'
}
=
$cloned_bug
->
{
'short_desc'
};
$vars
->
{
'bug_file_loc'
}
=
$cloned_bug
->
{
'bug_file_loc'
};
$vars
->
{
'bug_file_loc'
}
=
$cloned_bug
->
{
'bug_file_loc'
};
$vars
->
{
'keywords'
}
=
$cloned_bug
->
{
'keywords'
}
;
$vars
->
{
'keywords'
}
=
$cloned_bug
->
keywords
;
$vars
->
{
'dependson'
}
=
$cloned_bug_id
;
$vars
->
{
'dependson'
}
=
$cloned_bug_id
;
$vars
->
{
'blocked'
}
=
""
;
$vars
->
{
'blocked'
}
=
""
;
$vars
->
{
'deadline'
}
=
$cloned_bug
->
{
'deadline'
};
$vars
->
{
'deadline'
}
=
$cloned_bug
->
{
'deadline'
};
if
(
exists
$cloned_bug
->
{
'cc'
}
)
{
if
(
defined
$cloned_bug
->
cc
)
{
$vars
->
{
'cc'
}
=
join
(
" "
,
@
{
$cloned_bug
->
{
'cc'
}
});
$vars
->
{
'cc'
}
=
join
(
" "
,
@
{
$cloned_bug
->
cc
});
}
else
{
}
else
{
$vars
->
{
'cc'
}
=
formvalue
(
'cc'
);
$vars
->
{
'cc'
}
=
formvalue
(
'cc'
);
}
}
...
...
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