From 294403fa99c745c6b7753b76996a253f0380c3a1 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Thu, 28 Feb 2013 18:02:26 +0100 Subject: [PATCH] The router base url is without / on the end --- core/js/router.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/js/router.js b/core/js/router.js index 3562785b34..b94721673a 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') {