mirror of
https://github.com/redmine/redmine.git
synced 2026-03-05 20:11:36 +01:00
Removed with_scope call in SearchController (it's now a protected AR::Base method).
git-svn-id: http://redmine.rubyforge.org/svn/branches/work@970 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -90,9 +90,10 @@ class SearchController < ApplicationController
|
||||
end
|
||||
else
|
||||
operator = @all_words ? ' AND ' : ' OR '
|
||||
Project.with_scope(:find => {:conditions => Project.visible_by(User.current)}) do
|
||||
@results += Project.find(:all, :limit => limit, :conditions => [ (["(LOWER(name) like ? OR LOWER(description) like ?)"] * like_tokens.size).join(operator), * (like_tokens * 2).sort] ) if @scope.include? 'projects'
|
||||
end
|
||||
@results += Project.find(:all,
|
||||
:limit => limit,
|
||||
:conditions => [ (["(#{Project.visible_by(User.current)}) AND (LOWER(name) like ? OR LOWER(description) like ?)"] * like_tokens.size).join(operator), * (like_tokens * 2).sort]
|
||||
) if @scope.include? 'projects'
|
||||
# if only one project is found, user is redirected to its overview
|
||||
redirect_to :controller => 'projects', :action => 'show', :id => @results.first and return if @results.size == 1
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user