diff options
author | Andreas Fischer <bantu@phpbb.com> | 2014-02-15 12:30:03 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2014-02-15 12:30:03 +0100 |
commit | 9f923f235947b75260630234268d119179adda3e (patch) | |
tree | 60a35de891e20cfae8cb562b9c915d9ce7780e1c /phpBB/phpbb | |
parent | ccf12ba166299af5e09f2b2d9b77125f2fe033e9 (diff) | |
parent | d4affedaab610893c2869114a94413b61b7c3c2b (diff) | |
download | forums-9f923f235947b75260630234268d119179adda3e.tar forums-9f923f235947b75260630234268d119179adda3e.tar.gz forums-9f923f235947b75260630234268d119179adda3e.tar.bz2 forums-9f923f235947b75260630234268d119179adda3e.tar.xz forums-9f923f235947b75260630234268d119179adda3e.zip |
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().
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/notification/type/report_pm_closed.php | 2 |
1 files changed, 1 insertions, 1 deletions
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')); } /** |