We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73b865b commit e5d8044Copy full SHA for e5d8044
module/Auth/view/auth/index/login-info.phtml
@@ -41,7 +41,8 @@
41
if (!$org) {
42
echo $this->translate('Create my organization');
43
} else {
44
- echo sprintf($this->translate('Edit "%s"'), $org->getOrganizationName()->getName());
+ $orgName = $org->getOrganizationName();
45
+ echo sprintf($this->translate('Edit "%s"'), $orgName ? $orgName->getName() : '<unnamed organization>');
46
}
47
48
0 commit comments