diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-05-30 19:02:19 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-05-30 19:02:19 +0200 |
commit | a0987ebf594d7f9ae48cd0b69c31759693755a65 (patch) | |
tree | a4a541b1411b0313aaa35fdcbc42e5d4b2b2779e | |
parent | da6aae28ad0cb1bad3d0693f126a5436af64240d (diff) | |
download | nextcloud-server-a0987ebf594d7f9ae48cd0b69c31759693755a65.tar.gz nextcloud-server-a0987ebf594d7f9ae48cd0b69c31759693755a65.zip |
Fix undefined JS on login/setup page
-rw-r--r-- | core/js/js.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/js/js.js b/core/js/js.js index e31f67cca9c..cf35d8aac6a 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -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'], /** |