Changes between Initial Version and Version 1 of Ticket #39051
- Timestamp:
- 12/04/2016 04:24:55 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #39051 – Description
initial v1 1 The docs for get_current_user_id() do not specify that 0 is returned if no user is logged in. Change to: 1 The docs for get_current_user_id() do not specify that 0 is returned if no user is logged in. 2 Change to: 2 3 4 {{{#!php 3 5 /** 4 419 * Get the current user's ID 5 420 * 6 421 * @since MU 7 422 * 8 423 * @return int|0 The current user's ID. Returns 0 if no user is logged in. 9 424 */ 6 * Get the current user's ID 7 * 8 * @since MU 9 * 10 * @return int|0 The current user's ID. Returns 0 if no user is logged in. 11 */ 12 }}}