Actions
Defect #1284
openProblem due to interaction with Wiki Template plugin
Description
具体的な再現方法
What steps will reproduce the problem?¶
Install the plugin Wiki template
Activate wiki extension module, as well as wiki template module.
Edit a wiki page.
Error page appears.
期待する結果と実際の結果
What is the expected output? What do you see instead?¶
Should be able to select a wiki template, and edit the wiki page content.
下記コマンドの実行結果を教えてください。
Please give us a result of following command.¶
% ruby script/about
Environment: Redmine version 2.3.3.devel Ruby version 1.9.3-p392 (2013-02-22) [i386-mingw32] Rails version 3.2.13 Environment production Database adapter Mysql2 SCM: Git 1.8.1 Filesystem Redmine plugins: redmine_gsc_plantillas 0.1.0 redmine_issue_checklist 2.0.5 redmine_wiki_extensions 0.6.4 redmine_wiki_issue_fields 0.4.1
Please provide any additional information below.¶
I found a way to turn around this issue. In file wiki_extensions_wiki_controller_patch.rb, line 47, I changed :
if (args[:partial] == 'common/preview')
to
if (args.class == Hash) and (args.has_key?:partial) and (args[:partial] == 'common/preview')
Actually, the type of args, is sometime a hash, sometime a string.
Actions