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/bp-activity-embeds.php

    r10849 r10851  
    2020 */
    2121function bp_activity_setup_oembed() {
    22     if ( bp_get_major_wp_version() >= 4.5 && bp_is_active( 'activity', 'embeds' ) ) {
     22    if ( version_compare( $GLOBALS['wp_version'], '4.5', '>=' ) && bp_is_active( 'activity', 'embeds' ) ) {
    2323        buddypress()->activity->oembed = new BP_Activity_oEmbed_Extension;
    2424    }
Note: See TracChangeset for help on using the changeset viewer.