From d4affedaab610893c2869114a94413b61b7c3c2b Mon Sep 17 00:00:00 2001 From: Cesar G Date: Fri, 14 Feb 2014 19:19:53 -0800 Subject: [PATCH] [ticket/12192] Fix call to undefined method get_user_avatar(). PHPBB3-12192 --- phpBB/phpbb/notification/type/report_pm_closed.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/phpbb/notification/type/report_pm_closed.php b/phpBB/phpbb/notification/type/report_pm_closed.php index 9d2aac329e..56485f5d37 100644 --- a/phpBB/phpbb/notification/type/report_pm_closed.php +++ b/phpBB/phpbb/notification/type/report_pm_closed.php @@ -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')); } /**