Changeset 3309 for trunk/wp-includes/pluggable-functions.php
- Timestamp:
- 12/15/2005 04:31:41 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/pluggable-functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/pluggable-functions.php
r3302 r3309 150 150 } 151 151 } 152 } 153 endif; 154 155 if ( !function_exists('is_user_logged_in') ) : 156 function is_user_logged_in() { 157 global $current_user; 158 159 if ( $current_user->id == 0 ) 160 return false; 161 return true; 152 162 } 153 163 endif;
Note: See TracChangeset
for help on using the changeset viewer.