Ticket #16824: 16824.patch
File 16824.patch, 498 bytes (added by , 14 years ago) |
---|
-
wp-includes/query.php
2391 2391 2392 2392 if ( isset($q['post_status']) && '' != $q['post_status'] ) { 2393 2393 $statuswheres = array(); 2394 $q_status = explode(',', $q['post_status']);2394 $q_status = explode(',', implode(',', (array) $q['post_status'])); 2395 2395 $r_status = array(); 2396 2396 $p_status = array(); 2397 2397 $e_status = array();