Skip to content
Snippets Groups Projects
Commit 85108b47 authored by deuce's avatar deuce
Browse files

Try loading ecweb:vhost before ecweb to allow different virtual hosts to

run different ecweb configs.
parent 7beedcde
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,9 @@ var webIni=(function() {
}
}
var webIni = get_mod_options("ecweb");
var webIni = get_mod_options("ecweb:"+http_request.vhost);
if (webIni == null)
webIni = get_mod_options("ecweb");
if(webIni==null)
webIni={};
if(typeof webIni.WebDirectory == "undefined")
......
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