diff --git a/wp-admin/includes/plugin-install.php b/wp-admin/includes/plugin-install.php index eea74f1aeb..8294a783f7 100644 --- a/wp-admin/includes/plugin-install.php +++ b/wp-admin/includes/plugin-install.php @@ -394,6 +394,7 @@ function install_plugin_install_status($api, $loop = false) { $status = 'install'; $url = false; $update_file = false; + $version = ''; /* * Check to see if this plugin is known to be installed, diff --git a/wp-admin/includes/post.php b/wp-admin/includes/post.php index 667834a865..8eab849f4e 100644 --- a/wp-admin/includes/post.php +++ b/wp-admin/includes/post.php @@ -1029,18 +1029,24 @@ function wp_edit_posts_query( $q = false ) { $post_type = 'post'; $avail_post_stati = get_available_post_statuses($post_type); + $post_status = ''; + $perm = ''; if ( isset($q['post_status']) && in_array( $q['post_status'], $post_stati ) ) { $post_status = $q['post_status']; $perm = 'readable'; } + $orderby = ''; + if ( isset( $q['orderby'] ) ) { $orderby = $q['orderby']; } elseif ( isset( $q['post_status'] ) && in_array( $q['post_status'], array( 'pending', 'draft' ) ) ) { $orderby = 'modified'; } + $order = ''; + if ( isset( $q['order'] ) ) { $order = $q['order']; } elseif ( isset( $q['post_status'] ) && 'pending' == $q['post_status'] ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index d43b3c28c8..4698ef91d7 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0.2-alpha-44183'; +$wp_version = '5.0.2-alpha-44185'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.