Fixed #1454 -- Improved DB API quote_only_if_word() so that it doesn't quote 'select' parameters that are not all word characters. Thanks, dja@cdc.msbx.net
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3044 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
a371eb3c90
commit
b4be0d2487
|
@ -3,8 +3,8 @@ from django.db.models.fields import DateField, FieldDoesNotExist
|
|||
from django.db.models import signals
|
||||
from django.dispatch import dispatcher
|
||||
from django.utils.datastructures import SortedDict
|
||||
|
||||
import operator
|
||||
import re
|
||||
|
||||
# For Python 2.3
|
||||
if not hasattr(__builtins__, 'set'):
|
||||
|
@ -59,7 +59,7 @@ def orderlist2sql(order_list, opts, prefix=''):
|
|||
return ', '.join(output)
|
||||
|
||||
def quote_only_if_word(word):
|
||||
if ' ' in word:
|
||||
if re.search('\W', word): # Don't quote if there are spaces or non-word chars.
|
||||
return word
|
||||
else:
|
||||
return backend.quote_name(word)
|
||||
|
|
Loading…
Reference in New Issue