Skip to content

Commit

Permalink
[webui] fix issue filtering for running patchinfos
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianschroeter committed Feb 29, 2012
1 parent 1655fb8 commit 3d7dfd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webui/app/models/person.rb
Expand Up @@ -148,7 +148,7 @@ def running_patchinfos(opts = {})
issues = Array.new

# get users open issues for package
path = "/source/#{CGI.escape(pi.project)}/#{CGI.escape(pi.name)}?view=issues&states=OPEN&login='#{CGI.escape(login)}'"
path = "/source/#{URI.escape(pi.project)}/#{URI.escape(pi.name)}?view=issues&states=OPEN&login=#{CGI.escape(login)}"
frontend = ActiveXML::Config::transport_for( :package )
answer = frontend.direct_http URI(path), :method => "GET"
doc = ActiveXML::Base.new(answer)
Expand Down

0 comments on commit 3d7dfd8

Please sign in to comment.