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
b4a06dd9
Commit
b4a06dd9
authored
Nov 30, 2016
by
David Lawrence
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'DierickxD71-patch-1'
* DierickxD71-patch-1: Timetrack fields, "Orig Est."+"Hours Left", accept numbers with commas or point
parents
3c60fba2
a16e8ee9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Bug.pm
Bugzilla/Bug.pm
+2
-2
No files found.
Bugzilla/Bug.pm
View file @
b4a06dd9
...
@@ -2683,7 +2683,7 @@ sub set_dup_id {
...
@@ -2683,7 +2683,7 @@ sub set_dup_id {
extra_data
=>
$self
->
dup_id
});
extra_data
=>
$self
->
dup_id
});
}
}
}
}
sub
set_estimated_time
{
$_
[
0
]
->
set
(
'estimated_time'
,
$_
[
1
]
);
}
sub
set_estimated_time
{
my
$et
=
$_
[
1
];
$et
=~
s/,/./g
;
$_
[
0
]
->
set
(
'estimated_time'
,
$et
);
}
sub
_set_everconfirmed
{
$_
[
0
]
->
set
(
'everconfirmed'
,
$_
[
1
]);
}
sub
_set_everconfirmed
{
$_
[
0
]
->
set
(
'everconfirmed'
,
$_
[
1
]);
}
sub
set_flags
{
sub
set_flags
{
my
(
$self
,
$flags
,
$new_flags
)
=
@_
;
my
(
$self
,
$flags
,
$new_flags
)
=
@_
;
...
@@ -2852,7 +2852,7 @@ sub reset_qa_contact {
...
@@ -2852,7 +2852,7 @@ sub reset_qa_contact {
my
$comp
=
$self
->
component_obj
;
my
$comp
=
$self
->
component_obj
;
$self
->
set_qa_contact
(
$comp
->
default_qa_contact
);
$self
->
set_qa_contact
(
$comp
->
default_qa_contact
);
}
}
sub
set_remaining_time
{
$_
[
0
]
->
set
(
'remaining_time'
,
$_
[
1
]
);
}
sub
set_remaining_time
{
my
$rt
=
$_
[
1
];
$rt
=~
s/,/./g
;
$_
[
0
]
->
set
(
'remaining_time'
,
$rt
);
}
# Used only when closing a bug or moving between closed states.
# Used only when closing a bug or moving between closed states.
sub
_zero_remaining_time
{
$_
[
0
]
->
{
'remaining_time'
}
=
0
;
}
sub
_zero_remaining_time
{
$_
[
0
]
->
{
'remaining_time'
}
=
0
;
}
sub
set_reporter_accessible
{
$_
[
0
]
->
set
(
'reporter_accessible'
,
$_
[
1
]);
}
sub
set_reporter_accessible
{
$_
[
0
]
->
set
(
'reporter_accessible'
,
$_
[
1
]);
}
...
...
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