From c26f21f34c90222f0833a416e2e36cf4d720d6b8 Mon Sep 17 00:00:00 2001 From: Patrick PREMARTIN Date: Fri, 30 Jun 2023 09:13:15 +0200 Subject: [PATCH] fixed web service and samples URL (http:// doesn't work anymore, use https://) --- Emc/WebService.php | 6 +++--- config/environment.example.php | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Emc/WebService.php b/Emc/WebService.php index 96dc6c0..cbda77b 100755 --- a/Emc/WebService.php +++ b/Emc/WebService.php @@ -53,21 +53,21 @@ class WebService * @access public * @var string */ - public $document_server = 'http://test.envoimoinscher.com/documents'; + public $document_server = 'https://test.envoimoinscher.com/documents'; /** * API test document server host. * @access public * @var string */ - private $document_server_test = 'http://test.envoimoinscher.com/documents'; + private $document_server_test = 'https://test.envoimoinscher.com/documents'; /** * API production document server host. * @access public * @var string */ - private $document_server_prod = 'http://documents.envoimoinscher.com/documents'; + private $document_server_prod = 'https://documents.envoimoinscher.com/documents'; /** * Module version diff --git a/config/environment.example.php b/config/environment.example.php index e0d1d43..2948565 100644 --- a/config/environment.example.php +++ b/config/environment.example.php @@ -1,8 +1,8 @@