aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/notification
diff options
context:
space:
mode:
authorCesar G <prototech91@gmail.com>2014-02-14 19:19:53 -0800
committerCesar G <prototech91@gmail.com>2014-02-14 19:19:53 -0800
commitd4affedaab610893c2869114a94413b61b7c3c2b (patch)
tree60a35de891e20cfae8cb562b9c915d9ce7780e1c /phpBB/phpbb/notification
parentccf12ba166299af5e09f2b2d9b77125f2fe033e9 (diff)
downloadforums-d4affedaab610893c2869114a94413b61b7c3c2b.tar
forums-d4affedaab610893c2869114a94413b61b7c3c2b.tar.gz
forums-d4affedaab610893c2869114a94413b61b7c3c2b.tar.bz2
forums-d4affedaab610893c2869114a94413b61b7c3c2b.tar.xz
forums-d4affedaab610893c2869114a94413b61b7c3c2b.zip
[ticket/12192] Fix call to undefined method get_user_avatar().
PHPBB3-12192
Diffstat (limited to 'phpBB/phpbb/notification')
-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'));
}
/**