Rails4: replace deprecated find_all_by_* at WikiPage model

git-svn-id: http://svn.redmine.org/redmine/trunk@12515 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2014-01-08 05:09:05 +00:00
parent 035c68f1a9
commit 2977f95ad9
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ class WikiPage < ActiveRecord::Base
r.title == r.redirects_to ? r.destroy : r.save
end
# Remove redirects for the new title
wiki.redirects.find_all_by_title(title).each(&:destroy)
wiki.redirects.where(:title => title).all.each(&:destroy)
# Create a redirect to the new title
wiki.redirects << WikiRedirect.new(:title => @previous_title, :redirects_to => title) unless redirect_existing_links == "0"
@previous_title = nil