Skip to content
Snippets Groups Projects
Commit 6e74a068 authored by Jean-Philippe Lang's avatar Jean-Philippe Lang
Browse files

Fixed: error on admin/info if there's more than 1 plugin installed.

git-svn-id: http://redmine.rubyforge.org/svn/trunk@945 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent bc060b31
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@
 
<h3 class="icon22 icon22-plugin">Plugins</h3>
<table class="list">
<% @plugins.keys.sort.each do |plugin| %>
<% @plugins.keys.sort {|x,y| x.to_s <=> y.to_s}.each do |plugin| %>
<tr class="<%= cycle('odd', 'even') %>">
<td><%=h @plugins[plugin].name %></td>
<td><%=h @plugins[plugin].description %></td>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment