From d022651a248cd8c6ee3c2d3750e0d1730c735793 Mon Sep 17 00:00:00 2001 From: Thilina Hasantha Date: Mon, 5 Dec 2016 23:42:29 +0100 Subject: [PATCH] Fix https url installation issue --- src/app/install/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/install/index.php b/src/app/install/index.php index f577e25f..3df0cf56 100644 --- a/src/app/install/index.php +++ b/src/app/install/index.php @@ -131,7 +131,7 @@ if(!$isDataFolderExists){ return; } - if(request["BASE_URL"].indexOf("http://") == 0 || request["BASE_URL"].indexOf("https://")){ + if(request["BASE_URL"].indexOf("http://") == 0 || request["BASE_URL"].indexOf("https://") == 0){ }else{ alert("Invalid Base URL"); return;