diff options
author | Go MAEDA <maeda@farend.jp> | 2019-08-14 02:40:56 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-08-14 02:40:56 +0000 |
commit | beeacb2c2a833cfffc83d05ccb4317cb41654374 (patch) | |
tree | 72dceddde159ee2d667529584a01fe1411ed5577 /app/controllers/admin_controller.rb | |
parent | 3bf7956ce00fd60f8bfa84c47b67fa2f52bcff6f (diff) | |
download | redmine-beeacb2c2a833cfffc83d05ccb4317cb41654374.tar.gz redmine-beeacb2c2a833cfffc83d05ccb4317cb41654374.zip |
Replace RMagick with MiniMagick (#30492).
Patch by Yuichi HARADA.
git-svn-id: http://svn.redmine.org/redmine/trunk@18366 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers/admin_controller.rb')
-rw-r--r-- | app/controllers/admin_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/admin_controller.rb b/app/controllers/admin_controller.rb index 322f7e5fb..ac5513395 100644 --- a/app/controllers/admin_controller.rb +++ b/app/controllers/admin_controller.rb @@ -76,7 +76,7 @@ class AdminController < ApplicationController [:text_default_administrator_account_changed, User.default_admin_account_changed?], [:text_file_repository_writable, File.writable?(Attachment.storage_path)], ["#{l :text_plugin_assets_writable} (./public/plugin_assets)", File.writable?(Redmine::Plugin.public_directory)], - [:text_rmagick_available, Object.const_defined?(:Magick)], + [:text_minimagick_available, Object.const_defined?(:MiniMagick)], [:text_convert_available, Redmine::Thumbnail.convert_available?], [:text_gs_available, Redmine::Thumbnail.gs_available?] ] |