Commit ca77aeabbe11e43d7754f39e38bed015a9754848

Authored by Leandro Santos
1 parent b047dfa3

should not parse html code of block help content

app/views/box_organizer/show_block_type_info.html.erb
... ... @@ -15,7 +15,7 @@
15 15 <div id="block-info-description">
16 16 <h2><%= _('Description') %></h2>
17 17 <p><%= @block.class.description %></p>
18   - <p><%= @block.help if @block.class.method_defined?(:help) %></p>
  18 + <p><%= @block.help.html_safe if @block.class.method_defined?(:help) %></p>
19 19 </div>
20 20  
21 21 </div>
... ...