Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
06/01/2016 04:27:58 PM (9 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/bp-activity-classes.php

    r10849 r10851  
    1616
    1717// Embeds - only applicable for WP 4.5+
    18 if ( bp_get_major_wp_version() >= 4.5 && bp_is_active( 'activity', 'embeds' ) ) {
     18if ( version_compare( $GLOBALS['wp_version'], '4.5', '>=' ) && bp_is_active( 'activity', 'embeds' ) ) {
    1919    require dirname( __FILE__ ) . '/classes/class-bp-activity-oembed-extension.php';
    2020}
Note: See TracChangeset for help on using the changeset viewer.