Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
08/12/2019 08:46:05 PM (6 years ago)
Author:
dcavins
Message:

Invitations: Fix indicator bubble in user navigation.

Previously, the indicator bubble in the user's drop down navigation never was populated because the logic was checking the wrong thing.

Props imath.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-groups/classes/class-bp-groups-component.php

    r12405 r12441  
    795795            $pending = _x( 'No Pending Invites', 'My Account Groups sub nav', 'buddypress' );
    796796
    797             if ( ! empty( $count['total'] ) ) {
     797            if ( $count ) {
    798798                $title = sprintf(
    799799                    /* translators: %s: Group invitation count for the current user */
Note: See TracChangeset for help on using the changeset viewer.