##// END OF EJS Templates
Fixed: error on admin/info if there's more than 1 plugin installed....
Jean-Philippe Lang -
r932:6e74a068082f
parent child
Show More
@@ -12,7 +12,7
12  
12  
13 <h3 class="icon22 icon22-plugin">Plugins</h3>
13 <h3 class="icon22 icon22-plugin">Plugins</h3>
14 <table class="list">
14 <table class="list">
15 <% @plugins.keys.sort.each do |plugin| %>
15 <% @plugins.keys.sort {|x,y| x.to_s <=> y.to_s}.each do |plugin| %>
16 <tr class="<%= cycle('odd', 'even') %>">
16 <tr class="<%= cycle('odd', 'even') %>">
17 <td><%=h @plugins[plugin].name %></td>
17 <td><%=h @plugins[plugin].name %></td>
18 <td><%=h @plugins[plugin].description %></td>
18 <td><%=h @plugins[plugin].description %></td>
General Comments 0
You need to be logged in to leave comments. Login now