- Affected version
- 2.2.10 Patch 1
If you set a custom title to a falsy value (such as
Affected functions:
0
), it will fail to render.Affected functions:
XF\Entity\User::setupApiResultData
PHP:$result->user_title = $this->custom_title ?: $this->app()->templater()->getDefaultUserTitleForUser($this);
XF\Job\UserAction::applyInternalUserChange
PHP:if ($customTitle = $this->getActionValue('custom_title'))
XF\Template\Templater::fnUserTitle
PHP:$customTitle = $user->custom_title; if ($customTitle) { $userTitle = htmlspecialchars($customTitle); }