aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewtopic.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2013-01-04 15:10:43 +0100
committerMarc Alexander <admin@m-a-styles.de>2013-01-04 15:10:43 +0100
commit7256a2d944df10ef649794c6174fea5ca69adea3 (patch)
treec28b409e5a738f1a73f00a5f85ac9a204ff8d943 /phpBB/viewtopic.php
parent5d091e2d8f5079a8ce8dc14500c29f6642c40e98 (diff)
downloadforums-7256a2d944df10ef649794c6174fea5ca69adea3.tar
forums-7256a2d944df10ef649794c6174fea5ca69adea3.tar.gz
forums-7256a2d944df10ef649794c6174fea5ca69adea3.tar.bz2
forums-7256a2d944df10ef649794c6174fea5ca69adea3.tar.xz
forums-7256a2d944df10ef649794c6174fea5ca69adea3.zip
[feature/avatars] Add phpbb prefix to new functions
Although get_user_avatar() is not new, the phpbb prefix was prepended. This is due to the fact that it was entirely rewritten and is therefore more or less a completely new function. PHPBB3-10018
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r--phpBB/viewtopic.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php
index 594ef5f1c5..59ef7bbc80 100644
--- a/phpBB/viewtopic.php
+++ b/phpBB/viewtopic.php
@@ -1083,7 +1083,7 @@ while ($row = $db->sql_fetchrow($result))
'sig_bbcode_bitfield' => '',
'online' => false,
- 'avatar' => ($user->optionget('viewavatars')) ? get_user_avatar($row) : '',
+ 'avatar' => ($user->optionget('viewavatars')) ? phpbb_get_user_avatar($row) : '',
'rank_title' => '',
'rank_image' => '',
'rank_image_src' => '',
@@ -1149,7 +1149,7 @@ while ($row = $db->sql_fetchrow($result))
'viewonline' => $row['user_allow_viewonline'],
'allow_pm' => $row['user_allow_pm'],
- 'avatar' => ($user->optionget('viewavatars')) ? get_user_avatar($row) : '',
+ 'avatar' => ($user->optionget('viewavatars')) ? phpbb_get_user_avatar($row) : '',
'age' => '',
'rank_title' => '',