Remove invalid opening paranthesis in DmsfFile search

This commit is contained in:
Holger Just 2016-01-06 14:48:37 +01:00 committed by Holger Just
parent 8faac6c9ae
commit 82ea59054b

View File

@ -292,7 +292,7 @@ class DmsfFile < ActiveRecord::Base
project_ids = projects.collect(&:id) if projects
if options[:offset]
limit_options = ["(dmsf_files.updated_at #{options[:before] ? '<' : '>'} ?", options[:offset]]
limit_options = ["dmsf_files.updated_at #{options[:before] ? '<' : '>'} ?", options[:offset]]
end
if options[:titles_only]