소스 검색

Clean up SQL.

git-svn-id: http://svn.redmine.org/redmine/trunk@16244 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/3.4.0
Jean-Philippe Lang 7 년 전
부모
커밋
30493d5421
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      app/controllers/auto_completes_controller.rb

+ 2
- 2
app/controllers/auto_completes_controller.rb 파일 보기

@@ -29,13 +29,13 @@ class AutoCompletesController < ApplicationController
scope = scope.open(status == 'o')
end
if issue_id.present?
scope = scope.where("#{Issue.table_name}.id <> ?", issue_id.to_i)
scope = scope.where.not(:id => issue_id.to_i)
end
if q.match(/\A#?(\d+)\z/)
@issues << scope.find_by_id($1.to_i)
end

@issues += scope.where("LOWER(#{Issue.table_name}.subject) LIKE LOWER(?)", "%#{q}%").order("#{Issue.table_name}.id DESC").limit(10).to_a
@issues += scope.where("LOWER(#{Issue.table_name}.subject) LIKE LOWER(?)", "%#{q}%").order(:id => :desc).limit(10).to_a
@issues.compact!
end
render :layout => false

Loading…
취소
저장