Changeset 52977 for trunk/src/wp-includes/class-wp-user-query.php
- Timestamp:
- 03/22/2022 02:54:45 PM (4 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-user-query.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-user-query.php
r52973 r52977 771 771 772 772 if ( null === $this->results ) { 773 $this->request = implode( 774 ' ', 775 array( 776 "SELECT {$this->query_fields}", 777 $this->query_from, 778 $this->query_where, 779 $this->query_orderby, 780 $this->query_limit, 781 ) 782 ); 773 $this->request = " 774 SELECT {$this->query_fields} 775 {$this->query_from} 776 {$this->query_where} 777 {$this->query_orderby} 778 {$this->query_limit} 779 "; 783 780 784 781 if ( is_array( $qv['fields'] ) || 'all' === $qv['fields'] ) {
Note: See TracChangeset
for help on using the changeset viewer.