diff options
author | Marc Alexander <admin@m-a-styles.de> | 2013-01-08 15:34:20 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2013-01-08 15:34:20 +0100 |
commit | 8778c9c945e388c2b727f1b7cd057dd67a091441 (patch) | |
tree | b92c7f4615a249ed24137246de747eb3290a62bb /phpBB/includes/avatar/driver/driver.php | |
parent | 023d7a972dd5c279e0b0b24801f9e53e7865d39a (diff) | |
download | forums-8778c9c945e388c2b727f1b7cd057dd67a091441.tar forums-8778c9c945e388c2b727f1b7cd057dd67a091441.tar.gz forums-8778c9c945e388c2b727f1b7cd057dd67a091441.tar.bz2 forums-8778c9c945e388c2b727f1b7cd057dd67a091441.tar.xz forums-8778c9c945e388c2b727f1b7cd057dd67a091441.zip |
[feature/avatars] Pass phpbb_user object to get_custom_html()
Pass the phpbb_user object to function get_custom_html(). This object is
used in that method. Also fixed incorrect arguments to get_custom_html()
in phpbb_get_avatar().
PHPBB3-10018
Diffstat (limited to 'phpBB/includes/avatar/driver/driver.php')
-rw-r--r-- | phpBB/includes/avatar/driver/driver.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/avatar/driver/driver.php b/phpBB/includes/avatar/driver/driver.php index d4f9139c18..cb6dbd7d68 100644 --- a/phpBB/includes/avatar/driver/driver.php +++ b/phpBB/includes/avatar/driver/driver.php @@ -71,7 +71,7 @@ abstract class phpbb_avatar_driver implements phpbb_avatar_driver_interface /** * @inheritdoc */ - public function get_custom_html($row, $alt = '') + public function get_custom_html($user, $row, $alt = '') { return ''; } |