Make WordPress Core

Opened 13 years ago

Closed 11 years ago

#21043 closed enhancement (invalid)

is_user_logged_in() returns true even if user is not logged in

Reported by: tomauger's profile TomAuger Owned by:
Milestone: Priority: normal
Severity: normal Version: 3.4
Component: Users Keywords: dev-feedback
Focuses: Cc:

Description

If you have wp_set_current_user(), then is_user_logged_in() will always return true. This goes against my understanding of the role of wp_set_current_user() especially as explained by the documentation:

"Some WordPress functionality is based on the current user and not based on the signed in user. Therefore, it opens the ability to edit and perform actions on users who aren't signed in."

But then we look at is_user_logged_in() and it just says - can we get_current_user()?

Suddenly wp_set_current_user is looking like wp_switch_logged_in_user(), which I doubt is the intent of that function.

Change History (3)

#1 @scribu
13 years ago

  • Cc scribu added

This ticket was mentioned in IRC in #wordpress-dev by aubreypwd. View the logs.


11 years ago

#3 @nacin
11 years ago

  • Milestone Awaiting Review deleted
  • Resolution set to invalid
  • Status changed from new to closed

wp_set_current_user() is a complete context switch. is_user_logged_in() is merely a reflection of that state. Changing this would break a ton.

Note: See TracTickets for help on using tickets.