Changeset 805 for branches/Ver2.4/xpressme_integration_kit/wp-content
- Timestamp:
- Jun 16, 2012, 4:22:53 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Ver2.4/xpressme_integration_kit/wp-content/plugins/xpressme/include/pluggable-override.php
r348 r805 317 317 endif; 318 318 319 320 321 322 319 if ( !function_exists('is_user_logged_in') ) : 320 function is_user_logged_in() { 321 $user = wp_get_current_user(); 322 if (method_exists($user, 'exists')) { 323 if ( ! $user->exists() ) return false; 324 } else { 325 if ( empty( $user->ID ) ) return false; 326 } 327 return true; 328 } 329 endif; 323 330 324 331 // *********************************** End Of Pluggable Function Edit (wp-include/pluggable.php) ************************************
Note: See TracChangeset
for help on using the changeset viewer.