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.

link|improve this question
It helps to tell us which line is causing the error so that we can narrow down the problem quicker. – McStretch Apr 26 '11 at 12:19
I'm getting error after calling method "textilizable". – eliriand Apr 26 '11 at 12:23
feedback

2 Answers

maybe the misspelling of attachments unless that's meant to be that way?

link|improve this answer
No, I fixed mispelling, and it did not help. And I tried to remove "attachment" parameter, but it had no effect... – eliriand Apr 26 '11 at 12:47
feedback

Use debugger and/or logger to see what is being passed to the textilizable method, or to the parse_wiki_links method, then look it up in the relevant api and see what it expects to be passed.

These are just general techniques that you should use when you encounter a problem.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.