W1zzard
Well-known member
When editing entries in the user titles ladder, the title gets cut off at 50 characters
XenForo_Model_UserTitleLadder::insertUserTitleLadderEntry
The database field is 250 characters long. Could be a typo, missing the 2
Please don't shorten the database field to 50 characters (we use HTML to put images in titles).
XenForo_Model_UserTitleLadder::insertUserTitleLadderEntry
Code:
'title' => utf8_substr($title, 0, 50)
The database field is 250 characters long. Could be a typo, missing the 2
Please don't shorten the database field to 50 characters (we use HTML to put images in titles).