Skip to content

Commit

Permalink
[webui] String escape
Browse files Browse the repository at this point in the history
  • Loading branch information
saschpe committed Jan 10, 2012
1 parent c6809e0 commit ec6a9bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webui/app/models/person.rb
Expand Up @@ -142,7 +142,7 @@ def running_patchinfos(opts = {})
cachekey = "#{login}_patchinfos_that_need_work"
Rails.cache.delete cachekey unless opts[:cache]
return Rails.cache.fetch(cachekey, :expires_in => 10.minutes) do
Collection.find_cached(:id, :what => 'package', :predicate => "patchinfo/issue/[@state="OPEN" and owner/@login='#{login}']")
Collection.find_cached(:id, :what => 'package', :predicate => "patchinfo/issue/[@state='OPEN' and owner/@login='#{login}']")
end
end

Expand Down

0 comments on commit ec6a9bd

Please sign in to comment.