Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions kernel/classes/datatypes/ezuser/ezusertype.php
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,12 @@ function objectAttributeContent( $contentObjectAttribute )
$user = eZUser::fetch( $userID );
eZDebugSetting::writeDebug( 'kernel-user', $user, 'user' );

// return if user object wasn't found to avoid a fatal error in eZUserType::updateUserDraft
if ( !( $user instanceof eZUser ) )
{
return null;
}

// Looking for a "draft" and loading it's content
$serializedDraft = $contentObjectAttribute->attribute( 'data_text' );

Expand Down