Merge pull request #58 from netqyq/master

fix: ru_captcha.root_url -> ru_captcha.root_path, to avoid generate a http url in  https application.
This commit is contained in:
Jason Lee 2019-01-22 17:21:29 +08:00 committed by GitHub
commit 1d1742e2ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ module RuCaptcha
def rucaptcha_image_tag(opts = {})
opts[:class] = opts[:class] || 'rucaptcha-image'
image_tag(ru_captcha.root_url, opts)
image_tag(ru_captcha.root_path, opts)
end
end
end