1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-03-09 15:40:18 +00:00

Lots of small fixed.

This commit is contained in:
Ylian Saint-Hilaire 2020-01-29 14:38:41 -08:00
parent 2ca5117b08
commit 8149a73510
34 changed files with 27 additions and 12 deletions

View file

@ -4250,7 +4250,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) {
}
} else {
xargs.title1 = domain.title1 ? domain.title1 : '';
xargs.title2 = (args.title1 && domain.title2) ? domain.title2 : '';
xargs.title2 = (domain.title1 && domain.title2) ? domain.title2 : '';
}
xargs.extitle = encodeURIComponent(xargs.title);
xargs.domainurl = domain.url;