Changeset 44141
- Timestamp:
- 12/14/2018 01:54:40 AM (7 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/5.0 merged: 43792
- Property svn:mergeinfo changed
-
trunk/src/wp-admin/includes/post.php
r44131 r44141 2236 2236 $meta_boxes = (array) $wp_meta_boxes[ $current_screen->id ][ $location ][ $priority ]; 2237 2237 foreach ( $meta_boxes as $meta_box ) { 2238 if ( ! empty( $meta_box['title'] ) ) { 2239 $meta_boxes_per_location[ $location ][] = array( 2240 'id' => $meta_box['id'], 2241 'title' => $meta_box['title'], 2242 ); 2238 if ( false == $meta_box || ! $meta_box['title'] ) { 2239 continue; 2243 2240 } 2241 2242 $meta_boxes_per_location[ $location ][] = array( 2243 'id' => $meta_box['id'], 2244 'title' => $meta_box['title'], 2245 ); 2244 2246 } 2245 2247 }
Note: See TracChangeset
for help on using the changeset viewer.