aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2014-02-15 12:30:03 +0100
committerAndreas Fischer <bantu@phpbb.com>2014-02-15 12:30:03 +0100
commit9f923f235947b75260630234268d119179adda3e (patch)
tree60a35de891e20cfae8cb562b9c915d9ce7780e1c /phpBB/phpbb
parentccf12ba166299af5e09f2b2d9b77125f2fe033e9 (diff)
parentd4affedaab610893c2869114a94413b61b7c3c2b (diff)
downloadforums-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.php2
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'));
}
/**