Index: branches/Ver2.4/xpressme_integration_kit/wp-content/plugins/xpressme/include/pluggable-override.php
===================================================================
--- branches/Ver2.4/xpressme_integration_kit/wp-content/plugins/xpressme/include/pluggable-override.php	(revision 797)
+++ branches/Ver2.4/xpressme_integration_kit/wp-content/plugins/xpressme/include/pluggable-override.php	(revision 805)
@@ -317,8 +317,15 @@
 endif;
 
-
-
-
-
+if ( !function_exists('is_user_logged_in') ) :
+function is_user_logged_in() {
+	$user = wp_get_current_user();
+	if (method_exists($user, 'exists')) {
+		if ( ! $user->exists() ) return false;
+	} else {
+		if ( empty( $user->ID ) ) return false;
+	}
+	return true;
+}
+endif;
 
 // ***********************************  End Of Pluggable Function Edit (wp-include/pluggable.php) ************************************
