diff --git src/bp-core/bp-core-classes.php src/bp-core/bp-core-classes.php
index 6e48852..a232360 100644
|
|
|
class BP_Date_Query extends WP_Date_Query { |
| 1547 | 1547 | * Destructor. |
| 1548 | 1548 | */ |
| 1549 | 1549 | public function __destruct() { |
| 1550 | | remove_filter( 'date_query_valid_columns', array( $this, 'register_date_column' ) ); |
| | 1550 | remove_filter( 'date_query_valid_columns', array( $this, 'register_date_column' ) ); |
| 1551 | 1551 | } |
| 1552 | 1552 | |
| 1553 | 1553 | /** |
diff --git src/bp-xprofile/bp-xprofile-classes.php src/bp-xprofile/bp-xprofile-classes.php
index d18a041..de81384 100644
|
|
|
class BP_XProfile_Query { |
| 3661 | 3661 | } |
| 3662 | 3662 | |
| 3663 | 3663 | // Don't recurse |
| 3664 | | remove_action( 'bp_user_query_populate_extras', array( $xprofile_query, 'populate_extras' ), 10, 2 ); |
| | 3664 | remove_action( 'bp_user_query_populate_extras', array( $this, 'populate_extras' ), 10, 2 ); |
| 3665 | 3665 | } |
| 3666 | 3666 | } |
diff --git src/bp-xprofile/bp-xprofile-filters.php src/bp-xprofile/bp-xprofile-filters.php
index 1ae80c0..f812cdd 100644
|
|
|
function xprofile_filter_pre_validate_value_by_field_type( $value, $field, $fiel |
| 200 | 200 | /** |
| 201 | 201 | * Filter an Extended Profile field value, and attempt to make clickable links |
| 202 | 202 | * to members search results out of them. |
| 203 | | * |
| | 203 | * |
| 204 | 204 | * - Not run on datebox field types |
| 205 | 205 | * - Not run on values without commas with less than 5 words |
| 206 | 206 | * - URL's are made clickable |