[Pkg-owncloud-commits] [owncloud] 182/199: Fix undefined JS on login/setup page
David Prévot
taffit at moszumanska.debian.org
Sun Jun 1 18:53:24 UTC 2014
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository owncloud.
commit a0987ebf594d7f9ae48cd0b69c31759693755a65
Author: Vincent Petry <pvince81 at owncloud.com>
Date: Fri May 30 19:02:19 2014 +0200
Fix undefined JS on login/setup page
---
core/js/js.js | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/core/js/js.js b/core/js/js.js
index e31f67c..cf35d8a 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'],
/**
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git
More information about the Pkg-owncloud-commits
mailing list