From 06673cfde7ac9792d4f5f3843e331a5ded94c276 Mon Sep 17 00:00:00 2001 From: Dany wm Date: Wed, 6 Dec 2023 18:02:56 +0100 Subject: [PATCH] FIX : default to use https --- include/constant.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/constant.php b/include/constant.php index dd4ec698c..48584f3e1 100644 --- a/include/constant.php +++ b/include/constant.php @@ -112,9 +112,9 @@ $version_noalyss = SVNINFO; // If you don't want to be notified of the update if (!defined("SITE_UPDATE")) - define("SITE_UPDATE", 'http://www.noalyss.eu/last_version.txt'); + define("SITE_UPDATE", 'https://www.noalyss.eu/last_version.txt'); if (!defined("SITE_UPDATE_PLUGIN")) - define("SITE_UPDATE_PLUGIN", 'http://www.noalyss.eu/plugin_last_version.txt'); + define("SITE_UPDATE_PLUGIN", 'https://www.noalyss.eu/plugin_last_version.txt'); if (!defined("NOALYSS_PACKAGE_REPOSITORY")) { define("NOALYSS_PACKAGE_REPOSITORY", "https://package.noalyss.eu/"); }