Skip to content

Commit

Permalink
Merge pull request #7605 from scinote-eln/develop
Browse files Browse the repository at this point in the history
May 2024 Release Hotfix 2
  • Loading branch information
artoscinote authored May 29, 2024
2 parents ad75570 + 7949744 commit 30bd9a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.34.0.1
1.34.0.2
2 changes: 1 addition & 1 deletion app/models/concerns/searchable_model.rb
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def self.extract_phrases(query)
current_operator = ''

query.scan(/"[^"]+"|\S+/) do |phrase|
phrase = Regexp.escape(phrase)
phrase = Regexp.escape(phrase).gsub('\ ', ' ')
phrase = sanitize_sql_like(phrase.strip)

case phrase.downcase
Expand Down

0 comments on commit 30bd9a3

Please sign in to comment.