diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-09-27 17:28:22 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-09-27 17:28:22 +0000 |
commit | a96421019f3a813b93798e4ec8099edd09f8a661 (patch) | |
tree | 102827aea563063b29ae21800bfff88fb16550f9 /config/environment.rb | |
parent | d723bea502faedb218f929b40849935d61c577e2 (diff) | |
download | redmine-a96421019f3a813b93798e4ec8099edd09f8a661.tar.gz redmine-a96421019f3a813b93798e4ec8099edd09f8a661.zip |
Search engines now supports pagination.
Results are sorted in reverse chronological order.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@766 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config/environment.rb')
-rw-r--r-- | config/environment.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/environment.rb b/config/environment.rb index a6c5149ed..cbb1896a2 100644 --- a/config/environment.rb +++ b/config/environment.rb @@ -15,6 +15,8 @@ Rails::Initializer.run do |config| # Add additional load paths for sweepers config.load_paths += %W( #{RAILS_ROOT}/app/sweepers ) + + config.plugin_paths = ['lib/plugins', 'vendor/plugins'] # Force all environments to use the same logger level # (by default production uses :info, the others :debug) |