D
DragonByte Tech
Guest
When attempting to batch update users, any and all changes are completely discarded. This is because there's a silent exception being thrown that is being suppressed; "Please enter a custom title that does not contain any censored words."
Root problem (
PHP:
Read more
Continue reading...
Root problem (
\XF\Job\UserAction#L143-147
): PHP:
Code:
$customTitle = $this->getActionValue('custom_title');
if ($customTitle !== '')
{
$user->custom_title = $customTitle;
}
$customTitle
in this case is...Read more
Continue reading...