diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-01-28 19:54:41 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-01-28 19:54:41 +0000 |
commit | ec7ac956e46d4d0e0e7f1cb01755af29bfba9677 (patch) | |
tree | c0ad71d5ba7af8106ef4c2546a56b3984054f8b8 /app | |
parent | 99c560295fca5a51a48dd5d3edff6dc796b3f8fd (diff) | |
download | redmine-ec7ac956e46d4d0e0e7f1cb01755af29bfba9677.tar.gz redmine-ec7ac956e46d4d0e0e7f1cb01755af29bfba9677.zip |
removed environment information
git-svn-id: http://redmine.rubyforge.org/svn/trunk@202 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/controllers/admin_controller.rb | 1 | ||||
-rw-r--r-- | app/views/admin/info.rhtml | 9 |
2 files changed, 1 insertions, 9 deletions
diff --git a/app/controllers/admin_controller.rb b/app/controllers/admin_controller.rb index a9a6a8f0b..84787ca37 100644 --- a/app/controllers/admin_controller.rb +++ b/app/controllers/admin_controller.rb @@ -51,6 +51,5 @@ class AdminController < ApplicationController end
def info
- @adapter_name = ActiveRecord::Base.connection.adapter_name
end
end diff --git a/app/views/admin/info.rhtml b/app/views/admin/info.rhtml index 81db03e21..144138f40 100644 --- a/app/views/admin/info.rhtml +++ b/app/views/admin/info.rhtml @@ -1,10 +1,3 @@ <h2><%=l(:label_information_plural)%></h2>
-<p><%=l(:field_version)%>: <strong>redMine <%= Redmine::VERSION %></strong></p>
-
-<%=l(:label_environment)%>:
-<ul>
-<% Rails::Info.properties.each do |name, value| %>
-<li><%= name %>: <%= value %></li>
-<% end %>
-</ul>
\ No newline at end of file +<p><%=l(:field_version)%>: <strong>redMine <%= Redmine::VERSION %></strong></p>
\ No newline at end of file |