aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Reyna <David.Reyna@windriver.com>2015-03-30 18:26:19 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-04-17 11:53:34 +0100
commit62f486f81f59a3186a57f93c3b102404a3da8a6f (patch)
tree9b2108c1c15aa450e51fcd8654c19821f4bd5229
parent4de721aa75a4aaad186312443726e6daa764934b (diff)
downloadbitbake-62f486f81f59a3186a57f93c3b102404a3da8a6f.tar.gz
toaster: searching all projects table resets page count
Add missing '_save_parameters_cookies' to preserve page count. [YOCTO #7483] Signed-off-by: David Reyna <David.Reyna@windriver.com>
-rwxr-xr-xlib/toaster/toastergui/views.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/toaster/toastergui/views.py b/lib/toaster/toastergui/views.py
index 06c7dd5f0..b5c4d87c5 100755
--- a/lib/toaster/toastergui/views.py
+++ b/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"