summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2013-02-28 12:50:56 -0800
committerLukas Reschke <lukas@statuscode.ch>2013-02-28 12:50:56 -0800
commit040076ffc20bffdbc1a08dcf3f1988a9043cd8a7 (patch)
tree3b5995d228b94aa3c20e4422ad4828370aca1f16
parent84aa2c66d68b7bd1640f0d5ebeef23e8853a8169 (diff)
parent294403fa99c745c6b7753b76996a253f0380c3a1 (diff)
downloadnextcloud-server-040076ffc20bffdbc1a08dcf3f1988a9043cd8a7.tar.gz
nextcloud-server-040076ffc20bffdbc1a08dcf3f1988a9043cd8a7.zip
Merge pull request #1992 from owncloud/fix-heartbeat
The router base url is without / on the end
-rw-r--r--core/js/router.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/js/router.js b/core/js/router.js
index 3562785b342..b94721673a7 100644
--- a/core/js/router.js
+++ b/core/js/router.js
@@ -1,11 +1,11 @@
-OC.router_base_url = OC.webroot + '/index.php/',
+OC.router_base_url = OC.webroot + '/index.php',
OC.Router = {
// register your ajax requests to load after the loading of the routes
// has finished. otherwise you face problems with race conditions
registerLoadedCallback: function(callback){
this.routes_request.done(callback);
},
- routes_request: $.ajax(OC.router_base_url + 'core/routes.json', {
+ routes_request: $.ajax(OC.router_base_url + '/core/routes.json', {
dataType: 'json',
success: function(jsondata) {
if (jsondata.status === 'success') {