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
dee37d06
Commit
dee37d06
authored
Dec 15, 2015
by
Dylan Hardison
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 1169181 - The bug_user_last_visit method returns an empty array for old bugs
r=dkl,a=dkl bringing this in line with the 5.0 fix because it's too simple to pass up.
parent
9215fb96
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
BugUserLastVisit.pm
Bugzilla/API/1_0/Resource/BugUserLastVisit.pm
+1
-1
BugUserLastVisit.pm
Bugzilla/WebService/BugUserLastVisit.pm
+1
-1
No files found.
Bugzilla/API/1_0/Resource/BugUserLastVisit.pm
View file @
dee37d06
...
...
@@ -87,7 +87,7 @@ sub update {
push
(
@results
,
_bug_user_last_visit_to_hash
(
$bug
,
$last_visit_ts
,
$params
$bug
->
bug_id
,
$last_visit_ts
,
$params
));
}
$dbh
->
bz_commit_transaction
();
...
...
Bugzilla/WebService/BugUserLastVisit.pm
View file @
dee37d06
...
...
@@ -52,7 +52,7 @@ sub update {
push
(
@results
,
$self
->
_bug_user_last_visit_to_hash
(
$bug
,
$last_visit_ts
,
$params
$bug
->
bug_id
,
$last_visit_ts
,
$params
));
}
$dbh
->
bz_commit_transaction
();
...
...
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