Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
06/01/2016 04:27:58 PM (8 years ago)
Author:
r-a-y
Message:

Embeds: Use version_compare() instead of a direct operator check.

Props DJPaul.

See #7104.

File:
1 edited

Legend:

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

    r10838 r10851  
    7575
    7676        // Embeds - only applicable for WP 4.5+
    77         if ( bp_get_major_wp_version() >= 4.5 && bp_is_active( $this->id, 'embeds' ) ) {
     77        if ( version_compare( $GLOBALS['wp_version'], '4.5', '>=' ) && bp_is_active( $this->id, 'embeds' ) ) {
    7878            $includes[] = 'embeds';
    7979        }
Note: See TracChangeset for help on using the changeset viewer.