Fix artist link for wiki show-or-new page

This commit is contained in:
Toks
2013-10-25 13:14:31 -04:00
parent 09561a2294
commit 0fb0a7564d

View File

@@ -71,7 +71,7 @@ class WikiPagesController < ApplicationController
redirect_to wiki_page_path(@wiki_page)
else
@wiki_page = WikiPage.new(:title => params[:title])
@artist = Artist.name_matches(@wiki_page.title).first
@artist = Artist.named(@wiki_page.title).active.first
respond_with(@wiki_page)
end
end