Relation#all deprecation warning fix for Rails 4

This commit is contained in:
Manoj 2013-11-06 01:05:28 +05:30
parent bba5631923
commit a1e2706c2f
1 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ class UserDestroyer
Post.with_deleted.where(user_id: user.id).update_all("user_id = NULL")
# If this user created categories, fix those up:
categories = Category.where(user_id: user.id).all
categories = Category.where(user_id: user.id)
categories.each do |c|
c.user_id = Discourse.system_user.id
c.save!
@ -63,4 +63,4 @@ class UserDestroyer
end
end
end
end