私はRedmineプラグインを書いていて、コントローラーにこのコードがあります:
@project = Project.find(params[:id])
@wiki = @project.wiki
@page = @wiki.find_page(params[:page])
@export1 = textilizable @page.content, :text, :attchments => @page.attachments
このコードを呼び出した後、エラーが発生しました:
TypeError (can't convert String into Hash):
app/helpers/application_helper.rb:516:in
parse_wiki_links'
app/helpers/application_helper.rb:492:in
gsub!'
app/helpers/application_helper.rb:492:in `parse_wiki_links'
問題の原因とそれを修正する方法はありますか?
ありがとう。