diff options
author | Cqoicebordel <Cqoicebordel@users.noreply.github.com> | 2015-01-20 16:29:54 +0100 |
---|---|---|
committer | Cqoicebordel <Cqoicebordel@users.noreply.github.com> | 2015-01-20 16:29:54 +0100 |
commit | 816a2c5cbefb73468b31316a007b59b8b8a23654 (patch) | |
tree | 687e406f605778c5cf7a44e0ed0e74c1093bba6a /searx/webapp.py | |
parent | 393d24ba50e8f71a948adabb675ead10c96f46b9 (diff) | |
download | searxng-816a2c5cbefb73468b31316a007b59b8b8a23654.tar.gz searxng-816a2c5cbefb73468b31316a007b59b8b8a23654.zip |
Move cookies in render()
Diffstat (limited to 'searx/webapp.py')
-rw-r--r-- | searx/webapp.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/searx/webapp.py b/searx/webapp.py index 639780a48..df5cc5812 100644 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -277,6 +277,8 @@ def render(template_name, override_theme=None, **kwargs): kwargs['template_name'] = template_name + kwargs['cookies'] = request.cookies + return render_template( '{}/{}'.format(kwargs['theme'], template_name), **kwargs) @@ -292,7 +294,6 @@ def index(): if not request.args and not request.form: return render( 'index.html', - cookies=request.cookies, ) try: @@ -300,7 +301,6 @@ def index(): except: return render( 'index.html', - cookies=request.cookies, ) search.results, search.suggestions,\ @@ -389,7 +389,6 @@ def index(): answers=search.answers, infoboxes=search.infoboxes, theme=get_current_theme_name(), - cookies=request.cookies, favicons=global_favicons[themes.index(get_current_theme_name())] ) @@ -399,7 +398,6 @@ def about(): """Render about page""" return render( 'about.html', - cookies=request.cookies, ) @@ -561,7 +559,6 @@ def preferences(): autocomplete_backends=autocomplete_backends, shortcuts={y: x for x, y in engine_shortcuts.items()}, themes=themes, - cookies=request.cookies, theme=get_current_theme_name()) @@ -619,7 +616,6 @@ def stats(): return render( 'stats.html', stats=stats, - cookies=request.cookies, ) |