diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-12-02 14:20:28 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-12-02 14:20:28 +0000 |
commit | 6e74a068082faea3cfbbbeb5b44e4798722eb3c0 (patch) | |
tree | f436332dbd85796155de6f41e3ce340f88ce4fbe /app | |
parent | bc060b31ae086db5a6baf6e3a892c525b2b6f0cd (diff) | |
download | redmine-6e74a068082faea3cfbbbeb5b44e4798722eb3c0.tar.gz redmine-6e74a068082faea3cfbbbeb5b44e4798722eb3c0.zip |
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
Diffstat (limited to 'app')
-rw-r--r-- | app/views/admin/info.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ <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> |