Feature #32116 » 32116.patch
lib/redmine/info.rb | ||
---|---|---|
20 | 20 |
["Mailer delivery", ActionMailer::Base.delivery_method] |
21 | 21 |
].map {|info| " %-30s %s" % info}.join("\n") + "\n" |
22 | 22 | |
23 |
s << "Settings:\n" |
|
24 |
s << [ |
|
25 |
["Theme", Setting.ui_theme] |
|
26 |
].map {|info| " %-30s %s" % info}.join("\n") + "\n" |
|
27 | ||
23 | 28 |
s << "SCM:\n" |
24 | 29 |
Redmine::Scm::Base.all.each do |scm| |
25 | 30 |
scm_class = "Repository::#{scm}".constantize |