From f7f0d27a059b1e010b9bbcdf371b9867f6fcfa45 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 30 May 2017 02:01:31 -0400 Subject: [PATCH] Fix URL query string encoding for the document page navigation views. GitLab issue #383. Signed-off-by: Roberto Rosario --- mayan/apps/documents/views/document_page_views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/documents/views/document_page_views.py b/mayan/apps/documents/views/document_page_views.py index 48adda867c..4ab01dadb1 100644 --- a/mayan/apps/documents/views/document_page_views.py +++ b/mayan/apps/documents/views/document_page_views.py @@ -104,7 +104,7 @@ class DocumentPageNavigationBase(RedirectView): ) ) - return '{}?{}'.format(url, urlencode(query_dict)) + return '{}?{}'.format(url, urlencode(query_dict, doseq=True)) class DocumentPageNavigationFirst(DocumentPageNavigationBase):