Ticket #1026: meta-1026.patch
| File meta-1026.patch, 912 bytes (added by , 10 years ago) |
|---|
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wc-post-types/wc-post-types.php
181 181 // Order by session time 182 182 if ( 'edit-wcb_session' == $current_screen->id && $query->get( 'orderby' ) == '_wcpt_session_time' ) { 183 183 184 // Voodoo because of http://core.trac.wordpress.org/ticket/23268185 184 $query->set( 'meta_query', array( 186 185 'relation' => 'OR', 187 186 array( 188 187 'key' => '_wcpt_session_time', 189 'value' => '',190 188 'compare' => 'EXISTS', 191 189 ), 192 190 array( 193 191 'key' => '_wcpt_session_time', 194 'value' => '',195 192 'compare' => 'NOT EXISTS', 196 193 ), 197 194 ) );