Changeset 51806
- Timestamp:
- 09/13/2021 06:53:57 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-comment-query.php
r51518 r51806 802 802 803 803 // Falsey search strings are ignored. 804 if ( strlen( $this->query_vars['search'] ) ) {804 if ( isset( $this->query_vars['search'] ) && strlen( $this->query_vars['search'] ) ) { 805 805 $search_sql = $this->get_search_sql( 806 806 $this->query_vars['search'],
Note: See TracChangeset
for help on using the changeset viewer.