remove unneeded Relation#all from WikiPage#handle_redirects

git-svn-id: http://svn.redmine.org/redmine/trunk@12534 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2014-01-08 12:43:10 +00:00
parent 95d86daef3
commit 143a1d8ec3
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.where(:title => title).all.each(&:destroy)
wiki.redirects.where(:title => title).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