1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/17353] Return image src for gravatar image

PHPBB-17353
This commit is contained in:
Marc Alexander
2024-06-28 14:58:17 +02:00
parent efece4136b
commit 40881b537e
2 changed files with 25 additions and 10 deletions

View File

@@ -29,7 +29,7 @@ class gravatar extends \phpbb\avatar\driver\driver
public function get_data($row)
{
return array(
'src' => $row['avatar'],
'src' => $this->get_gravatar_url($row),
'width' => $row['avatar_width'],
'height' => $row['avatar_height'],
);