diff --git a/app/views/dmsf/_query_rows.erb b/app/views/dmsf/_query_rows.erb
index 8a900dfc..e8ffc2c3 100644
--- a/app/views/dmsf/_query_rows.erb
+++ b/app/views/dmsf/_query_rows.erb
@@ -39,7 +39,7 @@
<% unless system %>
<% if defined?(EasyExtensions) %>
- <%= link_to '', '#', title: l(:button_actions), class: 'icon-only icon-actions js-contextmenu' %>
+ <%= link_to '', '#', title: l(:button_actions), class: 'icon-only icon-actions js-contextmenu icon-more-horiz' %>
<% else %>
<%= link_to_context_menu %>
<% end %>
diff --git a/app/views/dmsf_files/show.html.erb b/app/views/dmsf_files/show.html.erb
index f6b805b2..1f89dc2a 100644
--- a/app/views/dmsf_files/show.html.erb
+++ b/app/views/dmsf_files/show.html.erb
@@ -99,7 +99,7 @@
<% if revision.description.present? %>
<%= content_tag :div, l(:label_description), class: 'label' %>
- <% text = clean_wiki_text(textilizable(revision.description)) %>
+ <% text = clean_wiki_text(textilizable(h(revision.description))) %>
<%= content_tag :div, text.html_safe, class: 'value wiki' %>
<% end %>
diff --git a/assets/stylesheets/easy_extensions.css b/assets/stylesheets/easy_extensions.css
index 912543f9..2bf6c13c 100644
--- a/assets/stylesheets/easy_extensions.css
+++ b/assets/stylesheets/easy_extensions.css
@@ -31,10 +31,6 @@
.dmsf-tree.idnt-9 td.dmsf-title { padding-left: 6.5em; }
/* Font icons */
-table.dmsf > tbody > tr > td a.icon-actions::before {
- content: "\F01D8";
-}
-
#sidebar ul > li > a.icon-only.icon-clear-query {
background-image: url(../../../images/close_hl.png);
background-repeat: no-repeat;
|