Skip to content
Snippets Groups Projects
Commit bd51bf1e authored by Christophe Simonis's avatar Christophe Simonis
Browse files

Merge pull request #358 from ajite/master-fix-nowww

[IMP] Db filter %h
parents 254c65b0 1dfa3946
No related branches found
No related tags found
No related merge requests found
......@@ -1287,7 +1287,9 @@ def db_list(force=False, httprequest=None):
def db_filter(dbs, httprequest=None):
httprequest = httprequest or request.httprequest
h = httprequest.environ.get('HTTP_HOST', '').split(':')[0]
d = h.split('.')[0]
d, _, r = h.partition('.')
if d == "www" and r:
d = r.partition('.')[0]
r = openerp.tools.config['dbfilter'].replace('%h', h).replace('%d', d)
dbs = [i for i in dbs if re.match(r, i)]
return dbs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment