]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/message_controller.rb
Pass the to_user to the view. Tests may follow. Closes #1394
[rails.git] / app / controllers / message_controller.rb
index d2fa9bd5fa54744d80749285fb9a137d77b0a734..c039fe636e643c1aed4ab1f24cea7fd4978e5e16 100644 (file)
@@ -35,6 +35,7 @@ class MessageController < ApplicationController
     @body = "On #{message.sent_on} #{message.sender.display_name} wrote:\n\n#{message.body.gsub(/^/, '> ')}" 
     @title = "Re: #{message.title.sub(/^Re:\s*/, '')}"
     @user_id = message.from_user_id
+    @to_user = User.find(message.to_user_id)
     render :action => 'new'
   rescue ActiveRecord::RecordNotFound
     render :action => 'no_such_user', :status => :not_found