Message Lenth

Blakefire

Active member
My user says the Profile length is 420 but in the ACP the max message length is 10,000.... Any ideas?
 
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.
 
Top Bottom