mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	Fixed #2379 -- Fixed 'search' DB lookup parameter, which was broken by [3248]. Thanks, Tim Keating
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3400 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
		| @@ -18,7 +18,7 @@ QUERY_TERMS = ( | ||||
|     'exact', 'iexact', 'contains', 'icontains', | ||||
|     'gt', 'gte', 'lt', 'lte', 'in', | ||||
|     'startswith', 'istartswith', 'endswith', 'iendswith', | ||||
|     'range', 'year', 'month', 'day', 'isnull', | ||||
|     'range', 'year', 'month', 'day', 'isnull', 'search', | ||||
| ) | ||||
|  | ||||
| # Size of each "chunk" for get_iterator calls. | ||||
|   | ||||
		Reference in New Issue
	
	Block a user