Ticket #37922: 37922.patch
File 37922.patch, 574 bytes (added by , 8 years ago) |
---|
-
src/wp-includes/class-wp-site-query.php
diff --git src/wp-includes/class-wp-site-query.php src/wp-includes/class-wp-site-query.php index 1836ab1..956a1dd 100644
35 35 protected $sql_clauses = array( 36 36 'select' => '', 37 37 'from' => '', 38 'join' => '', 38 39 'where' => array(), 39 40 'groupby' => '', 40 41 'orderby' => '', … … 517 518 } 518 519 519 520 $where = implode( ' AND ', $this->sql_clauses['where'] ); 521 $join = ''; 520 522 521 523 $pieces = array( 'fields', 'join', 'where', 'orderby', 'limits', 'groupby' ); 522 524