Fixed XF:UsernameChange entity does not have content type set in the structure

TickTackk

Well-known member
Affected version
2.2.1
PHP:
        $structure->table = 'xf_username_change';
        $structure->shortName = 'XF:UsernameChange';
        $structure->primaryKey = 'change_id';
        $structure->columns = [
should be:
PHP:
        $structure->table = 'xf_username_change';
        $structure->shortName = 'XF:UsernameChange';
        $structure->contentType = 'username_change';
        $structure->primaryKey = 'change_id';
        $structure->columns = [
 
Thank you for reporting this issue, it has now been resolved. We are aiming to include any changes that have been made in a future XF release (2.2.2).

Change log:
Apply a content type to the username change entity.
There may be a delay before changes are rolled out to the XenForo Community.
 
Top Bottom