How to allow more characters

As in, the title here?upload_2013-8-22_16-49-49.webp


There is a maxLength value of 50 set in: XenForo_DataWriter_UserUpgrade

And the database column has a maximum value of 50. That can be amended to 500 with this query:

Code:
ALTER TABLE `xf_user_upgrade` CHANGE COLUMN `title` `title` VARCHAR(500) NOT NULL
 
Top Bottom