Move `get_current_user_id()` call out of if-block, see [25669].

props layotte.
fixes #25372.

git-svn-id: https://develop.svn.wordpress.org/trunk@25689 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dominik Schilling (ocean90) 2013-10-03 13:35:12 +00:00
parent d529239d24
commit 3f422038dd
1 changed files with 2 additions and 2 deletions

View File

@ -2686,6 +2686,8 @@ class WP_Query {
$read_private_cap = 'read_private_' . $post_type_cap . 's';
}
$user_id = get_current_user_id();
if ( ! empty( $q['post_status'] ) ) {
$statuswheres = array();
$q_status = $q['post_status'];
@ -2713,8 +2715,6 @@ class WP_Query {
unset($p_status);
}
$user_id = get_current_user_id();
if ( !empty($e_status) ) {
$statuswheres[] = "(" . join( ' AND ', $e_status ) . ")";
}