mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-24 02:48:56 +00:00
Merge pull request #2032 from prototech/ticket/12192
[ticket/12192] Fix call to undefined method get_user_avatar(). * prototech/ticket/12192: [ticket/12192] Fix call to undefined method get_user_avatar().
This commit is contained in:
commit
9f923f2359
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ class report_pm_closed extends \phpbb\notification\type\pm
|
|||
*/
|
||||
public function get_avatar()
|
||||
{
|
||||
return $this->get_user_avatar($this->get_data('closer_id'));
|
||||
return $this->user_loader->get_avatar($this->get_data('closer_id'));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue