fixes
This commit is contained in:
@@ -465,11 +465,11 @@ class User < ActiveRecord::Base
|
||||
return q if params.blank?
|
||||
|
||||
if params[:name]
|
||||
q = q.name_matches(params[:name])
|
||||
q = q.name_matches(params[:name].downcase)
|
||||
end
|
||||
|
||||
if params[:name_matches]
|
||||
q = q.name_matches(params[:name_matches])
|
||||
q = q.name_matches(params[:name_matches].downcase)
|
||||
end
|
||||
|
||||
if params[:min_level]
|
||||
|
||||
@@ -139,7 +139,7 @@ module Danbooru
|
||||
|
||||
# Maximum size of an upload.
|
||||
def max_file_size
|
||||
5.megabytes
|
||||
10.megabytes
|
||||
end
|
||||
|
||||
def member_comment_time_threshold
|
||||
|
||||
Reference in New Issue
Block a user