In the
CommentPluginTemplate currently installed on twiki.org the output section for the action comment type is:
%TMPL:DEF{OUTPUT:action}%%POS:BEFORE%%AC%NOP%TION{who="%URLPARAM{"action_who"}%" due="%URLPARAM{"action_due"}%"}% %URLPARAM{"action_comment" newline="<br />"}%<br />- Created by %WIKIUSERNAME%, %SERVERTIME%
%TMPL:END%
However this creates incorrect output as the %ENDACTION% varibale is missing so all of the rest of the text on the page is presented as part of the action.
Changing the definition to read:
%TMPL:DEF{OUTPUT:action}%%POS:BEFORE%%AC%NOP%TION{who="%URLPARAM{"action_who"}%" due="%URLPARAM{"action_due"}%"}% %URLPARAM{"action_comment" newline="<br />"}%<br />- Created by %WIKIUSERNAME%, %SERVERTIME%
%END%NOP%ACTION%
%TMPL:END%
produces the expected action table display.
--
TWiki:Main/JohnRouillard
- 2011-06-16
Thanks John! This is now in SVN trunk and 5.0 branch. Uploaded to twiki.org as well.
--
TWiki:Main.PeterThoeny
- 2011-06-17