Skip to content

Commit

Permalink
fixed bracket newline
Browse files Browse the repository at this point in the history
  • Loading branch information
pbek committed Oct 24, 2018
1 parent 5f453f8 commit c306576
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kernel/classes/datatypes/ezuser/ezusertype.php
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,8 @@ function objectAttributeContent( $contentObjectAttribute )
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 ) ) {
if ( !( $user instanceof eZUser ) )
{
return null;
}

Expand Down

0 comments on commit c306576

Please sign in to comment.