Skip to:
Content

BuddyPress.org

Ticket #6737: 6737.diff

File 6737.diff, 584 bytes (added by henry.wright, 9 years ago)
  • src/bp-core/bp-core-avatars.php

    diff --git src/bp-core/bp-core-avatars.php src/bp-core/bp-core-avatars.php
    index 8b98657..2341ade 100644
    function bp_core_fetch_avatar( $args = '' ) { 
    622622
    623623                // Main Gravatar URL args.
    624624                $url_args = array(
    625                         'd' => $default_grav,
    626625                        's' => $params['width']
    627626                );
    628627
     628                if ( 'gravatar_default' !== $bp->grav_default->{$params['object']} ) {
     629                        $url_args['d'] = $default_grav;
     630                }
     631
    629632                // Custom Gravatar URL args.
    630633                if ( ! empty( $params['force_default'] ) ) {
    631634                        $url_args['f'] = 'y';