Changeset 44185 for branches/5.0/src/wp-admin/includes/post.php
- Timestamp:
- 12/14/2018 04:31:30 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.0/src/wp-admin/includes/post.php
r44047 r44185 1030 1030 1031 1031 $avail_post_stati = get_available_post_statuses($post_type); 1032 $post_status = ''; 1033 $perm = ''; 1032 1034 1033 1035 if ( isset($q['post_status']) && in_array( $q['post_status'], $post_stati ) ) { … … 1035 1037 $perm = 'readable'; 1036 1038 } 1039 1040 $orderby = ''; 1037 1041 1038 1042 if ( isset( $q['orderby'] ) ) { … … 1041 1045 $orderby = 'modified'; 1042 1046 } 1047 1048 $order = ''; 1043 1049 1044 1050 if ( isset( $q['order'] ) ) {
Note: See TracChangeset
for help on using the changeset viewer.