[FIX] Restore cookie_db check

bzr revid: fme@openerp.com-20130306152129-945co8a1gljz95eu
This commit is contained in:
Fabien Meghazi 2013-03-06 16:21:29 +01:00
parent 28aa304d44
commit c41aa09d92
1 changed files with 3 additions and 1 deletions

View File

@ -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: