diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2017-07-25 12:08:02 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2017-07-25 12:08:02 +0000 |
commit | ee99e5bfcc2c3c173503b2edd9ab4888f3a03d0f (patch) | |
tree | ffe38d35f716a785114aef2730a03512dc857336 /lib/plugins | |
parent | 11a1f02cc72a5174f246d525823899b69bb0a18c (diff) | |
download | redmine-ee99e5bfcc2c3c173503b2edd9ab4888f3a03d0f.tar.gz redmine-ee99e5bfcc2c3c173503b2edd9ab4888f3a03d0f.zip |
fix search engine returns 500 error by Go MAEDA (#26526)
git-svn-id: http://svn.redmine.org/redmine/trunk@16879 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/plugins')
-rw-r--r-- | lib/plugins/acts_as_searchable/lib/acts_as_searchable.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/plugins/acts_as_searchable/lib/acts_as_searchable.rb b/lib/plugins/acts_as_searchable/lib/acts_as_searchable.rb index ef95c911b..e6b6b22fc 100644 --- a/lib/plugins/acts_as_searchable/lib/acts_as_searchable.rb +++ b/lib/plugins/acts_as_searchable/lib/acts_as_searchable.rb @@ -15,6 +15,8 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +require 'redmine/database' + module Redmine module Acts module Searchable |