1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-11 03:04:09 +02:00

Merge pull request #6551 from marc1706/ticket/17198

[ticket/17198] Use https instead of http as default in remote avatar
This commit is contained in:
Marc Alexander
2023-09-30 13:22:21 +02:00
2 changed files with 3 additions and 2 deletions

View File

@@ -62,7 +62,7 @@ class remote extends \phpbb\avatar\driver\driver
if (!preg_match('#^(http|https|ftp)://#i', $url))
{
$url = 'http://' . $url;
$url = 'https://' . $url;
}
if (!function_exists('validate_data'))