Blakefire Active member Aug 8, 2012 #1 My user says the Profile length is 420 but in the ACP the max message length is 10,000.... Any ideas?
My user says the Profile length is 420 but in the ACP the max message length is 10,000.... Any ideas?
Jake Bunce Well-known member Aug 8, 2012 #2 Profile posts are meant to be short. I think you want this: library/XenForo/DataWriter/DiscussionMessage/ProfilePost.php Code: protected function _getDefaultOptions() { $options = parent::_getDefaultOptions(); $options[self::OPTION_MAX_MESSAGE_LENGTH] = 420; return $options; } You can edit the file directly or create an addon to extend the datawriter. Upvote 0 Downvote
Profile posts are meant to be short. I think you want this: library/XenForo/DataWriter/DiscussionMessage/ProfilePost.php Code: protected function _getDefaultOptions() { $options = parent::_getDefaultOptions(); $options[self::OPTION_MAX_MESSAGE_LENGTH] = 420; return $options; } You can edit the file directly or create an addon to extend the datawriter.