mirror of
https://github.com/django/django.git
synced 2025-09-27 12:39:17 +00:00
Refs #30997 -- Improved HttpRequest.is_ajax() warning message with stacklevel=2.
This commit is contained in:
parent
df32fd42b8
commit
7fc317ae73
1 changed files with 1 additions and 0 deletions
|
@ -262,6 +262,7 @@ class HttpRequest:
|
|||
'request.is_ajax() is deprecated. See Django 3.1 release notes '
|
||||
'for more details about this deprecation.',
|
||||
RemovedInDjango40Warning,
|
||||
stacklevel=2,
|
||||
)
|
||||
return self.META.get('HTTP_X_REQUESTED_WITH') == 'XMLHttpRequest'
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue