mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
Merge pull request #8798 from owncloud/fix-corejs
Fix undefined JS on login/setup page
This commit is contained in:
commit
56b60b9cd2
1 changed files with 3 additions and 3 deletions
|
|
@ -179,9 +179,9 @@ var OC={
|
|||
webroot:oc_webroot,
|
||||
appswebroots:(typeof oc_appswebroots !== 'undefined') ? oc_appswebroots:false,
|
||||
currentUser:(typeof oc_current_user!=='undefined')?oc_current_user:false,
|
||||
config: oc_config,
|
||||
appConfig: oc_appconfig || {},
|
||||
theme: oc_defaults || {},
|
||||
config: window.oc_config,
|
||||
appConfig: window.oc_appconfig || {},
|
||||
theme: window.oc_defaults || {},
|
||||
coreApps:['', 'admin','log','search','settings','core','3rdparty'],
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue