From 3925dc83b0db086ec81cc0b7d5ef2eca0ad1052f Mon Sep 17 00:00:00 2001 From: Daniel Grippi Date: Mon, 30 Jul 2012 15:07:41 -0700 Subject: [PATCH] fix typo on login with Facebook button [ci skip] --- app/helpers/application_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 2f22716f5..d06604d2f 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -16,7 +16,7 @@ def frame_page? def rad_fb_link(evil_styles) link_to('/users/auth/facebook', :class => 'btn-large new-btn fb-btn', :style => evil_styles ) do - image_tag('logos/fb_f.png', :class => "fb-f") + "Login in with Facebook".html_safe + image_tag('logos/fb_f.png', :class => "fb-f") + "Login with Facebook".html_safe end end