Fix #34 rucaptcha.root_url -> root_path, to avoid generate a http url in a https application.

This commit is contained in:
Jason Lee 2016-11-08 10:01:13 +08:00
parent ae8a30e819
commit 4ced53d87b
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