now assigning the site-object instead of just the alias of the site to avoid unneccessary get()-calls in onRequest()
This commit is contained in:
parent
eaf610d942
commit
48f78171d0
1 changed files with 1 additions and 1 deletions
|
@ -194,7 +194,7 @@ function evalSystemSetup(param,admin) {
|
|||
var result;
|
||||
root.sys_title = param.sys_title;
|
||||
root.sys_url = evalURL(param.sys_url);
|
||||
root.sys_frontSite = param.sys_frontSite ? param.sys_frontSite : null;
|
||||
root.sys_frontSite = param.sys_frontSite ? root.get(param.sys_frontSite) : null;
|
||||
// check system email
|
||||
if (!param.sys_email)
|
||||
result = getError("systemEmailMissing");
|
||||
|
|
Loading…
Add table
Reference in a new issue