From c6552273dd0b240be21de5ad7ccd16a636d660f8 Mon Sep 17 00:00:00 2001 From: David Reyna Date: Mon, 30 Mar 2015 18:26:19 -0700 Subject: [PATCH] bitbake: toaster: searching all projects table resets page count Add missing '_save_parameters_cookies' to preserve page count. [YOCTO #7483] (Bitbake rev: 62f486f81f59a3186a57f93c3b102404a3da8a6f) Signed-off-by: David Reyna Signed-off-by: Richard Purdie --- bitbake/lib/toaster/toastergui/views.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bitbake/lib/toaster/toastergui/views.py b/bitbake/lib/toaster/toastergui/views.py index 06c7dd5f0a..b5c4d87c56 100755 --- a/bitbake/lib/toaster/toastergui/views.py +++ b/bitbake/lib/toaster/toastergui/views.py @@ -3330,7 +3330,10 @@ if toastermain.settings.MANAGED: }, ] } - return render(request, template, context) + + response = render(request, template, context) + _save_parameters_cookies(response, pagesize, orderby, request) + return response def buildrequestdetails(request, pid, brid): template = "buildrequestdetails.html"