1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-23 01:51:31 +02:00

[ticket/17198] Use https instead of http as default in remote avatar

PHPBB3-17198
This commit is contained in:
Marc Alexander
2023-09-29 21:34:27 +02:00
parent 2d3781f285
commit a04af20806
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'))