mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 23:43:17 +01:00
Fix error "Unexpected token '?'" happens for none ES11 supportive browsers
This commit is contained in:
parent
6de4f5828f
commit
5fd83ae3eb
@ -107,7 +107,7 @@ function egw_getObjectManager(_id, _create, _search_depth) {
|
||||
* @return {egwActionObjectManager}
|
||||
*/
|
||||
function egw_getAppObjectManager(_create, _appName) {
|
||||
return egw_getObjectManager(_appName ?? egw_getAppName(), _create,1);
|
||||
return egw_getObjectManager(_appName ? _appName : egw_getAppName(), _create,1);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user