mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-22 05:12:25 +01:00
Fix error "Unexpected token '?'" happens for none ES11 supportive browsers
This commit is contained in:
parent
257914eba0
commit
9fc42e57ba
@ -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