- ๐ฎ๐ณIndia SandeepSingh199
Hi, I added some more checks
+ // Set default author. + $meta_author = \Drupal::currentUser()->getAccountName(); + if (!$node->isNew() && $node->getOwner() != null) { + $meta_author = $node->getOwner()->getAccountName(); + }
- ๐จ๐ฆCanada joseph.olstad
Suggested workarounds from comment #8 and related suggestions did not yield any clues. Patch 32 works for us. Our client deleted some users in prod that were involved in site building and some specific use cases involving content. Result is a WSOD for related environments when doing a node edit. The page in question has nothing special, just a node form with some normal fields. The reference to the user that is null is somewhere in a revision or as author/owner. This is about all the meta I can provide at this time.
- ๐ฎ๐ณIndia Sivaji_Ganesh_Jojodae Chennai
> changed target branch from 11.x to 11.1.x
Should be 11.x
- ๐ฌ๐งUnited Kingdom catch
The issue title says node/add but that looks like a very old config export that was fixed in a different issue.
- ๐จ๐ญSwitzerland berdir Switzerland
It doesn't make sense to fall back to the current user. If there is no current owner, it shouldn't display anything. it will afaik set the current user then as owner on save, but it's not yet true. So it should just not display anything then.
This _should_ not happen, deleting users should either delete the content or reassign it, this is just about dealing with invalid data.
And yes, originally the issue was about problems with the default value config that wasn't updated, I think a new issue would have made more sense, but it's technically speaking that error.
- ๐ฌ๐งUnited Kingdom catch
It doesn't make sense to fall back to the current user. If there is no current owner, it shouldn't display anything. it will afaik set the current user then as owner on save, but it's not yet true. So it should just not display anything then.
Yes agreed with this, and should possibly trigger_error() an E_USER_WARNING since it could be the result of a botched database update or attempt to prune user accounts and similar.
- ๐จ๐ฆCanada joseph.olstad
While it shouldn't happen, it did for us and it is 100% content or revision related. We have about 6 environments of the same build. My copy is a production dump from before the client deleted users. In my copy, I do not see the exception however in the more recent production copy where the users were deleted there is an exception and the patch is needed in this case.
So 100% the configuration is the same in our test cases however the content is not the same.