Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
05/07/2020 07:15:49 PM (6 years ago)
Author:
r-a-y
Message:

Notifications: Fix PHP 7.4 deprecated notice for implode().

Props mercime.

Fixes #8287.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-notifications/bp-notifications-template.php

    r12593 r12646  
    898898
    899899                // Build the links.
    900                 $retval = $r['before'] . implode( $r['links'], $r['sep'] ) . $r['after'];
     900                $retval = $r['before'] . implode( $r['sep'], $r['links'] ) . $r['after'];
    901901
    902902                /**
Note: See TracChangeset for help on using the changeset viewer.