diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-04-03 11:56:26 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-04-03 11:56:26 +0000 |
commit | 382b6911fdd94a3b021ef8da8c4e8c4cffbc5bb5 (patch) | |
tree | a71804c4c22026fbe3ba605c7a9dd27a58bd5506 | |
parent | 4d2c64067de7f424cbaff00979c07663d8745553 (diff) | |
download | redmine-382b6911fdd94a3b021ef8da8c4e8c4cffbc5bb5.tar.gz redmine-382b6911fdd94a3b021ef8da8c4e8c4cffbc5bb5.zip |
HTML markup discrepancy ol and ul at app/views/imports/show.html.erb (#22134).
Patch by Jens Krämer.
git-svn-id: http://svn.redmine.org/redmine/trunk@15292 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/imports/show.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/imports/show.html.erb b/app/views/imports/show.html.erb index ad6ae3681..d9848cdb5 100644 --- a/app/views/imports/show.html.erb +++ b/app/views/imports/show.html.erb @@ -3,7 +3,7 @@ <% if @import.unsaved_items.count == 0 %> <p><%= l(:notice_import_finished, :count => @import.saved_items.count) %></p> - <ol> + <ul> <% @import.saved_objects.each do |issue| %> <li><%= link_to_issue issue %></li> <% end %> |