logo

searx

My custom branche(s) on searx, a meta-search engine
commit: bac98a02cbca8083c1dfcaf54c55be2bcfb0576b
parent: dafb49c804348ea930298788b73bb63dfeb6da1c
Author: Adam Tauber <asciimoo@gmail.com>
Date:   Tue, 27 Jan 2015 20:00:17 +0100

[mod] reduce cookie expirity time - fixes #204

Diffstat:

Msearx/webapp.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/searx/webapp.py b/searx/webapp.py @@ -91,7 +91,7 @@ for indice, theme in enumerate(themes): for (dirpath, dirnames, filenames) in os.walk(theme_img_path): global_favicons[indice].extend(filenames) -cookie_max_age = 60 * 60 * 24 * 365 * 23 # 23 years +cookie_max_age = 60 * 60 * 24 * 365 * 5 # 5 years @babel.localeselector