Skip to:
Content

bbPress.org

Changeset 5024


Ignore:
Timestamp:
07/10/2013 05:17:11 PM (13 years ago)
Author:
johnjamesjacoby
Message:

Check the action in bbp_search_results_redirect(), and bail early if it's not a search request. Fixes regression causing topic merge/split/move actions to redirect to search page introduced in r4928.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/search/functions.php

    r4997 r5024  
    6464    global $wp_rewrite;
    6565   
     66    // Bail if not a search request action
     67    if ( empty( $_GET['action'] ) || ( 'bbp-search-request' !== $_GET['action'] ) ) {
     68        return;
     69    }
     70
    6671    // Bail if not using pretty permalinks
    6772    if ( ! $wp_rewrite->using_permalinks() ) {
Note: See TracChangeset for help on using the changeset viewer.