From 1129a39a97598630a00fd2e64863c3c83ae3dac5 Mon Sep 17 00:00:00 2001 From: Stephen Cameron Date: Mon, 23 Sep 2019 11:50:50 +0200 Subject: [PATCH] Fix #3072 @0.5 --- js/libs/fluidbook/fluidbook.nav.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/libs/fluidbook/fluidbook.nav.js b/js/libs/fluidbook/fluidbook.nav.js index 8775db05..a030e54d 100644 --- a/js/libs/fluidbook/fluidbook.nav.js +++ b/js/libs/fluidbook/fluidbook.nav.js @@ -353,7 +353,7 @@ FluidbookNav.prototype = { if (this.fluidbook.datas.home === '%apphome%' || forceHome && DATAS.phonegap) { homeURL = decodeURIComponent(window.localStorage.getItem('apphome')); } - if ($_GET['home'] !== null) { + if ($_GET['home'] !== undefined) { if ($_GET['home'].indexOf("%253A") <= 6) { $_GET['home'] = decodeURIComponent(decodeURIComponent($_GET['home'])); } -- 2.39.5