diff options
author | Louise Crow <louise.crow@gmail.com> | 2015-01-19 12:34:40 +0000 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2015-01-19 12:34:40 +0000 |
commit | b54cf848a6cbbf4155abc5614d565c0d85b8ed4e (patch) | |
tree | 372d7ff863e0f90f19049bd0bba8e8b1509a847f | |
parent | 619420d2bf4245dc700d858af7b0b918994da3ac (diff) | |
parent | a69f52a680e7c6f5b968035084c4724b3110d551 (diff) |
Merge branch '2082-fix-follow-wording' into rails-3-develop
-rw-r--r-- | app/views/track/_tracking_links.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/track/_tracking_links.html.erb b/app/views/track/_tracking_links.html.erb index 8e0b07167..c027e9732 100644 --- a/app/views/track/_tracking_links.html.erb +++ b/app/views/track/_tracking_links.html.erb @@ -13,7 +13,7 @@ </div> <% elsif track_thing %> <div class="feed_link feed_link_<%=location%>"> - <% if defined? follower_count && follower_count > 0 %> + <% if defined?(follower_count) && follower_count > 0 %> <%= link_to _("I like this request"), do_track_path(track_thing), :class => "link_button_green" %> <% else %> <%= link_to _("Follow"), do_track_path(track_thing), :class => "link_button_green" %> |