diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2012-05-16 09:09:51 +0100 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2012-05-16 09:09:51 +0100 |
commit | 1cdb6b82c68f6e01c27ca1f28e6602b7bfb82f08 (patch) | |
tree | 5946136d9e4e83e6cf0c9b24db22239667e90210 | |
parent | 36535f44d6de2f40e69ffe1e90210aa263e84a6b (diff) |
Fix typo that broke one of the "follow" informational messages
-rw-r--r-- | app/controllers/track_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/track_controller.rb b/app/controllers/track_controller.rb index f1ece3bcc..07e807451 100644 --- a/app/controllers/track_controller.rb +++ b/app/controllers/track_controller.rb @@ -138,7 +138,7 @@ class TrackController < ApplicationController if @user.receive_email_alerts flash[:notice] = _('You will now be emailed updates about {{track_description}}. <a href="{{change_email_alerts_url}}">Prefer not to receive emails?</a>', :track_description => @track_thing.params[:list_description], :change_email_alerts_url => url_for(:controller => "user", :action => "wall", :url_name => @user.url_name)) else - flash[:notice] = _('You are now <a href="{{wall_url_user}}">following</a> updates about {{track_description}}', @track_thing.params[:list_description], :wall_url_user => url_for(:controller => "user", :action => "wall", :url_name => @user.url_name)) + flash[:notice] = _('You are now <a href="{{wall_url_user}}">following</a> updates about {{track_description}}', :track_description => @track_thing.params[:list_description], :wall_url_user => url_for(:controller => "user", :action => "wall", :url_name => @user.url_name)) end return true end |