I'm writing Redmine plugin and have this code in controller:
@project = Project.find(params[:id])
@wiki = @project.wiki
@page = @wiki.find_page(params[:page])
@export1 = textilizable @page.content, :text, :attchments => @page.attachments
After calling this code I got error:
TypeError (can't convert String into Hash):
app/helpers/application_helper.rb:516:in parse_wiki_links'
app/helpers/application_helper.rb:492:ingsub!'
app/helpers/application_helper.rb:492:in `parse_wiki_links'
What caused problem and is there any way to fix it?
Thanks.