config master update

- use config.other.php to include other none core settings
- fix tab intends for not used defines
- remove old ACL defines that are not needed
- move BASE_NAME out to new area

TODO: think about removing G_TITLE
TODO: think about BASE_NAME external setting
This commit is contained in:
Clemens Schwaighofer
2019-10-29 12:00:55 +09:00
parent 2210f62441
commit c77562b595
3 changed files with 40 additions and 25 deletions

View File

@@ -853,12 +853,12 @@ function parseQueryString(query = '', return_key = '') {
function getQueryStringParam(key)
{
var url = new URL(window.location.href);
var param = url.searchParams.get(key);
if (param) {
return param;
} else {
return '';
}
var param = url.searchParams.get(key);
if (param) {
return param;
} else {
return '';
}
}
// *** MASTER logout call