From 6ac75e5e03457d71b28f4f0ad9bd2a303b2540ce Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Tue, 26 Sep 2017 15:24:51 +0200 Subject: [PATCH] #1698 --- js/libs/fluidbook/fluidbook.nav.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/js/libs/fluidbook/fluidbook.nav.js b/js/libs/fluidbook/fluidbook.nav.js index d2dbb13f..f345fc38 100644 --- a/js/libs/fluidbook/fluidbook.nav.js +++ b/js/libs/fluidbook/fluidbook.nav.js @@ -102,6 +102,9 @@ FluidbookNav.prototype = { homeURL = decodeURIComponent(window.localStorage.getItem('apphome')); } if ($_GET['home'] != null) { + if ($_GET['home'].indexOf("%253A") <= 6) { + $_GET['home'] = decodeURIComponent(decodeURIComponent($_GET['home'])); + } if ($_GET['home'].indexOf("%3A") <= 6) { $_GET['home'] = decodeURIComponent($_GET['home']); } -- 2.39.5