Fix update statement for Rails 4 preparation

This commit is contained in:
Robin Ward 2013-07-03 11:17:16 -04:00
parent 6364fc74ef
commit 07791ea471
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ class UserBlocker
end
def hide_posts
Post.update_all(["hidden = true, hidden_reason_id = COALESCE(hidden_reason_id, ?)", Post.hidden_reasons[:new_user_spam_threshold_reached]], user_id: @user.id)
Post.where(user_id: @user.id).update_all(["hidden = true, hidden_reason_id = COALESCE(hidden_reason_id, ?)", Post.hidden_reasons[:new_user_spam_threshold_reached]])
topic_ids = Post.where('user_id = ? and post_number = ?', @user.id, 1).pluck(:topic_id)
Topic.update_all({ visible: false }, id: topic_ids) unless topic_ids.empty?
end