Skip to content

Commit

Permalink
[webui] Cleanup collecting of issues
Browse files Browse the repository at this point in the history
  • Loading branch information
bgeuken committed Jul 27, 2015
1 parent f0e720f commit ca2a4e8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/api/app/controllers/webui/patchinfo_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,12 @@ def read_patchinfo
issueurl = IssueTracker.find_by_name(a.value(:tracker))
issueurl = issueurl.show_url_for(issueid)

issue = []
issue << a.value(:tracker)
issue << issueid
issue << issueurl
issue << a.text
@issues << issue
@issues << [
a.value(:tracker),
issueid,
issueurl,
a.text
]
end

if params[:issueid]
Expand Down

0 comments on commit ca2a4e8

Please sign in to comment.