- XF Compatibility
- 2.2.x
- Short Description
- Get the place to high speed external link Download and Discuss Increase Length Of Username And Custom Title 2022-05-25. Now Current version with External download URL. There are store on a third-party network disk platform. From The Content have 372 Views on NullPro Community .
library/XenForo/DataWriter/User.php
---
Search for 'maxLength' => 50
Change to 'maxLength' => 100
---
Search for 'maxLength' => 50
Change to 'maxLength' => 100
---
You can now use 100 characters in the Username, and the Custom Title as well.
---
Search for 'maxLength' => 50
PHP:
'username'
=> array('type' => self::TYPE_STRING, 'required' => true, 'maxLength' => 50, 'verification' => array('$this', '_verifyUsername'), 'requiredError' => 'please_enter_valid_name'),
Change to 'maxLength' => 100
PHP:
'username'
=> array('type' => self::TYPE_STRING, 'required' => true, 'maxLength' => 100, 'verification' => array('$this', '_verifyUsername'), 'requiredError' => 'please_enter_valid_name'),
---
Search for 'maxLength' => 50
PHP:
'custom_title'
=> array('type' => self::TYPE_STRING, 'maxLength' => 50, 'default' => '', 'verification' => array('$this', '_verifyCustomTitle')),
PHP:
'custom_title'
=> array('type' => self::TYPE_STRING, 'maxLength' => 100, 'default' => '', 'verification' => array('$this', '_verifyCustomTitle')),
You can now use 100 characters in the Username, and the Custom Title as well.