Skip to content
This repository has been archived by the owner on Nov 17, 2018. It is now read-only.

Commit

Permalink
Fixed bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrislloyd committed Jun 15, 2009
1 parent 6f277f2 commit 9093a3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/gravtastic.rb
Expand Up @@ -71,7 +71,7 @@ def gravatar_url(options={})

def url_params_from_hash(hash)
'?' + hash.map do |key, val|
[self.class.gravatar_options(key.to_sym) || key.to_s, CGI::escape(val.to_s) ].join('=')
[self.class.gravatar_options[key.to_sym] || key.to_s, CGI::escape(val.to_s) ].join('=')
end.sort.join('&')
end

Expand Down

0 comments on commit 9093a3e

Please sign in to comment.