In action.changeotherusertitle.php
Find:
Code:
if (strlen($newusertitle) > $vbulletin->options['maxuserlength'])
Replace with:
Code:
if (strlen($newusertitle) > $vbulletin->options['ctMaxChars'])
In action.changeusertitle.php
Find:
Code:
if (strlen($newusertitle) > $vbulletin->options['maxuserlength'])
Replace with:
Code:
if (strlen($newusertitle) > $vbulletin->options['ctMaxChars'])