Merge pull request #448 from joefiorini/patch-1

Use `base` from options if it's passed in
This commit is contained in:
Erik Michaels-Ober 2011-08-30 11:26:14 -07:00
Родитель 54a73ca744 2a0e430654
Коммит 90fc42c9fd
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -125,12 +125,12 @@ module OmniAuth
end
def search(options={}, &block)
base = options[:base]
base = options[:base] || @base
filter = options[:filter]
limit = options[:limit]
args = {
:base => @base,
:base => base,
:filter => filter,
:size => limit
}