##// END OF EJS Templates
Fixed that link to the assignee is escaped twice on the issue view (#11352)....
Fixed that link to the assignee is escaped twice on the issue view (#11352). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9967 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9351:8d73ddf73ffc
r9784:165c2be523be
Show More
00-core_plugins.rb
15 lines | 518 B | text/x-ruby | RubyLexer
# Loads the core plugins located in lib/plugins
Dir.glob(File.join(Rails.root, "lib/plugins/*")).sort.each do |directory|
if File.directory?(directory)
lib = File.join(directory, "lib")
if File.directory?(lib)
$:.unshift lib
ActiveSupport::Dependencies.autoload_paths += [lib]
end
initializer = File.join(directory, "init.rb")
if File.file?(initializer)
config = config = RedmineApp::Application.config
eval(File.read(initializer), binding, initializer)
end
end
end