diff options
| author | Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | 2025-02-12 17:08:03 +0100 |
|---|---|---|
| committer | Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | 2025-02-13 15:49:25 +0100 |
| commit | 05002c153c5018e4429a326a6699c7c45e5ea957 (patch) | |
| tree | 89c871eb639ab50a15676bcca21a806e784e7a3e /docs/ref | |
| parent | 0ee842bb456cb3854d5546106e1259db83714d34 (diff) | |
Fixed #36182 -- Returned "?" if all parameters are removed in querystring template tag.
Thank you to David Feeley for the report and Natalia Bidart for the review.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/templates/builtins.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt index f35935c160..b1a3236143 100644 --- a/docs/ref/templates/builtins.txt +++ b/docs/ref/templates/builtins.txt @@ -963,7 +963,7 @@ This tag requires a :class:`~django.http.QueryDict` instance, which defaults to :attr:`request.GET <django.http.HttpRequest.GET>` if none is provided. If the :class:`~django.http.QueryDict` is empty and no additional parameters -are provided, an empty string is returned. A non-empty result includes a +are provided, an empty string is returned. Otherwise, the result includes a leading ``"?"``. .. admonition:: Using ``request.GET`` as default |
