[Задача 11805] Установил протокол https для ссылки на личный кабинет

parent 402cabe3
......@@ -44,7 +44,6 @@ function toEmail($data) {
}
function getControlPanelUrl() {
$protocol = isset($_SERVER['HTTPS']) ? "https" : "http";
$path = explode("/", $_SERVER["REQUEST_URI"]);
// Убираем скрипт из пути
......@@ -52,7 +51,7 @@ function getControlPanelUrl() {
$path = implode("/", $path);
return "$protocol://$_SERVER[HTTP_HOST]$path/cp/";
return "https://$_SERVER[HTTP_HOST]$path/cp/";
}
/*Проверяем хэдеры на "человечость"*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment