Fixed User title ladder string cut off

W1zzard

Well-known member
When editing entries in the user titles ladder, the title gets cut off at 50 characters

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).
 
I do believe this may be a typo. We do often shorten titles of things down to 50 characters for things like phrase titles, but that doesn't apply here. So yeah changed to 250 in XF 1.4.4.
 
Top Bottom