Skip to:
Content

bbPress.org


Ignore:
Timestamp:
05/27/2013 06:36:06 AM (13 years ago)
Author:
johnjamesjacoby
Message:

Allow both get and post requests in bbp_is_ajax().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/common/ajax.php

    r4733 r4951  
    4949 */
    5050function bbp_is_ajax() {
    51     return (bool) ( isset( $_GET['bbp-ajax'] ) && ! empty( $_REQUEST['action'] ) );
     51    return (bool) ( ( isset( $_GET['bbp-ajax'] ) || isset( $_POST['bbp-ajax'] ) ) && ! empty( $_REQUEST['action'] ) );
    5252}
    5353
Note: See TracChangeset for help on using the changeset viewer.