This commit is contained in:
Scott Brown
2011-12-08 10:05:21 +10:00

View File

@@ -65,7 +65,7 @@ module Filters
def self.is_valid_browserstring?(str)
return false if not is_non_empty_string?(str)
return false if has_non_printable_char?(str)
return false if str.length > 200
return false if str.length > 300
true
end