summaryrefslogtreecommitdiffstats
path: root/bitbake
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:57 +0100
commitc6552273dd0b240be21de5ad7ccd16a636d660f8 (patch)
tree6dc25b00fb57d8bdeb6fc50e08eb301a437b1b4c /bitbake
parentac69236d1d7dd27e7a73c590b34e78aed8bb0cce (diff)
downloadpoky-c6552273dd0b240be21de5ad7ccd16a636d660f8.tar.gz
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 <David.Reyna@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rwxr-xr-xbitbake/lib/toaster/toastergui/views.py5
1 files changed, 4 insertions, 1 deletions
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:
3330 }, 3330 },
3331 ] 3331 ]
3332 } 3332 }
3333 return render(request, template, context) 3333
3334 response = render(request, template, context)
3335 _save_parameters_cookies(response, pagesize, orderby, request)
3336 return response
3334 3337
3335 def buildrequestdetails(request, pid, brid): 3338 def buildrequestdetails(request, pid, brid):
3336 template = "buildrequestdetails.html" 3339 template = "buildrequestdetails.html"