From c41aa09d92796e7e84e0fd892c7bb532af58e683 Mon Sep 17 00:00:00 2001 From: Fabien Meghazi Date: Wed, 6 Mar 2013 16:21:29 +0100 Subject: [PATCH] [FIX] Restore cookie_db check bzr revid: fme@openerp.com-20130306152129-945co8a1gljz95eu --- addons/web/controllers/main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/addons/web/controllers/main.py b/addons/web/controllers/main.py index bc859f10687..b324e5a18cf 100644 --- a/addons/web/controllers/main.py +++ b/addons/web/controllers/main.py @@ -109,7 +109,9 @@ def db_monodb_redirect(req): dbs = [] # 2 use the database from the cookie if it's listable and still listed - db = req.httprequest.cookies.get('last_used_database') or False + cookie_db = req.httprequest.cookies.get('last_used_database') + if cookie_db in dbs: + db = cookie_db # 3 use the first db if dbs and not db: