From 6e74a068082faea3cfbbbeb5b44e4798722eb3c0 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sun, 2 Dec 2007 14:20:28 +0000 Subject: [PATCH] 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 --- app/views/admin/info.rhtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/admin/info.rhtml b/app/views/admin/info.rhtml index d84d2ad32..179fda1a8 100644 --- a/app/views/admin/info.rhtml +++ b/app/views/admin/info.rhtml @@ -12,7 +12,7 @@  

Plugins

- <% @plugins.keys.sort.each do |plugin| %> + <% @plugins.keys.sort {|x,y| x.to_s <=> y.to_s}.each do |plugin| %>
<%=h @plugins[plugin].name %> <%=h @plugins[plugin].description %>