Hello all,

'Assume user' needs this function in user_controller modified, from:

  def assume
    user = User.find(params[:id])
    redirect_to user_path(self.assume_user(user).record)
  end

to:

  def assume
    user = User.find_by_login(params[:id])
    redirect_to user_path(self.assume_user(user).record)
  end

-- 
You received this message because you are subscribed to the Google Groups 
"CommunityEngine" group.
To post to this group, send email to communityengine@googlegroups.com.
To unsubscribe from this group, send email to 
communityengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/communityengine?hl=en.

Reply via email to