diff --git src/bp-groups/bp-groups-template.php src/bp-groups/bp-groups-template.php
index 15c70e865..77cf94eff 100644
|
|
|
function bp_group_avatar_url( $group = false, $type = 'full' ) {
|
| 1037 | 1037 | * @return string |
| 1038 | 1038 | */ |
| 1039 | 1039 | function bp_get_group_avatar_url( $group = false, $type = 'full' ) { |
| 1040 | | return bp_get_group_avatar( array( 'type' => $type ), $group ); |
| | 1040 | return bp_get_group_avatar( |
| | 1041 | array( |
| | 1042 | 'type' => $type, |
| | 1043 | 'html' => false |
| | 1044 | ), |
| | 1045 | $group |
| | 1046 | ); |
| 1041 | 1047 | } |
| 1042 | 1048 | |
| 1043 | 1049 | /** Group cover image *********************************************************/ |