Skip to content
Snippets Groups Projects
Commit 05705fc9 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2504849 by Berdir, catch, alexpott: User::getAnonymousUser() takes 13ms...

Issue #2504849 by Berdir, catch, alexpott: User::getAnonymousUser() takes 13ms due to ContentEntityBase::setDefaultLangcode()
parent 652ab4a0
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -416,6 +416,9 @@ public static function getAnonymousUser() {
static::$anonymousUser = new $class([
'uid' => [LanguageInterface::LANGCODE_DEFAULT => 0],
'name' => [LanguageInterface::LANGCODE_DEFAULT => ''],
// Explicitly set the langcode to ensure that field definitions do not
// need to be fetched to figure out a default.
'langcode' => [LanguageInterface::LANGCODE_DEFAULT => LanguageInterface::LANGCODE_NOT_SPECIFIED]
], $entity_type->id());
}
return clone static::$anonymousUser;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment