From c43d1c6335d059102c9befb58f010cf7bebd55e1 Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Mon, 4 May 2015 10:30:38 +0930 Subject: [PATCH] Fix logout redirection --- framework/core/js/lib/session.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/js/lib/session.js b/framework/core/js/lib/session.js index bdecab1f6..7cc730676 100644 --- a/framework/core/js/lib/session.js +++ b/framework/core/js/lib/session.js @@ -32,7 +32,7 @@ export default class Session extends mixin(class {}, evented) { } logout() { - window.location = app.config.baseURL+'/logout'; + window.location = app.config['base_url']+'/logout'; } authorize(xhr) {