- Uyumlu XF 1 Sürümleri
- 1.0
- 1.1
library/XenForo/DataWriter/ProfilePostComment.php dosyasında;
protected function _preSave()
{
if ($this->isChanged('message'))
{
$maxLength = 140;
if (utf8_strlen($this->get('message')) > $maxLength)
{
$this->error(new XenForo_Phrase('please_enter_message_with_no_more_than_x_characters', array('count' => $maxLength)), 'message');
$maxLength = 140; bölümüne istediğiniz rakamı yazın.