Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
03/08/2024 01:42:55 AM (13 months ago)
Author:
imath
Message:

Only parse heartbeat requests which relates to BuddyPress context

Props Slaffik, needle, espellcaste

Fixes #9099 (branch 12.0)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/12.0/src/bp-core/bp-core-catchuri.php

    r13695 r13753  
    3131    // Only set BuddyPress URI globals for registered Ajax actions.
    3232    if ( ! bp_ajax_action_is_registered( $action ) ) {
     33        return;
     34    }
     35
     36    if ( 'heartbeat' === $action && empty( $_REQUEST['data']['bp_heartbeat'] ) ) {
    3337        return;
    3438    }
Note: See TracChangeset for help on using the changeset viewer.