diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-01-30 15:29:54 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-01-30 15:29:54 +0000 |
commit | 71ec68cb731d03a878b228b57f8d2c61019ab9eb (patch) | |
tree | e375592b07c27b2ee159908d5cb61586a29e380d /app/views/wiki/_sidebar.html.erb | |
parent | 7005de51c5b26a542ad7fa1bdbf8289b0c76027d (diff) | |
download | redmine-71ec68cb731d03a878b228b57f8d2c61019ab9eb.tar.gz redmine-71ec68cb731d03a878b228b57f8d2c61019ab9eb.zip |
Wiki lists in the sidebar are broken (#21263).
Patch by Daniel Ritz.
git-svn-id: http://svn.redmine.org/redmine/trunk@15134 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/wiki/_sidebar.html.erb')
-rw-r--r-- | app/views/wiki/_sidebar.html.erb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/views/wiki/_sidebar.html.erb b/app/views/wiki/_sidebar.html.erb index 7208376dc..a8e4110c1 100644 --- a/app/views/wiki/_sidebar.html.erb +++ b/app/views/wiki/_sidebar.html.erb @@ -1,5 +1,7 @@ <% if @wiki && @wiki.sidebar -%> - <%= textilizable @wiki.sidebar.content, :text %> + <div class="wiki"> + <%= textilizable @wiki.sidebar.content, :text %> + </div> <% end -%> <h3><%= l(:label_wiki) %></h3> |