1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #27238 -- Disabled check_pattern_startswith_slash if settings.APPEND_SLASH=False.

Thanks strycore for the report and timgraham for suggesting the
solution.
This commit is contained in:
Alasdair Nicol
2016-09-19 21:18:41 +01:00
committed by Tim Graham
parent 1a9f6db5ff
commit 911d9f4ed1
3 changed files with 17 additions and 0 deletions

View File

@@ -14,3 +14,6 @@ Bugfixes
* Allowed combining ``contrib.postgres.search.SearchQuery`` with more than one
``&`` or ``|`` operators (:ticket:`27143`).
* Disabled system check for URL patterns beginning with a '/' when
``APPEND_SLASH=False`` (:ticket:`27238`).