The Arcive of vBulletin Modifications Site. |
|
Category Name Limit Details »»
|
|||||||||||||||||||||||||
Just curious. Is there a way I can increase the category name limit? Right now it tells me that it can't be less then 4 or more then 32, which I find to be an odd feature. Any way I can adjust or turn this off?
Show Your Support
|
|||||||||||||||||||||||||
| Comments |
|
#2
|
||||
|
||||
|
open /admincp/arcade.php and search for
Code:
if( empty($name) || strlen($name) > 32 || strlen($name) < 4 ) |
|
#3
|
||||
|
||||
|
Thank you again MrZeropage. I had to adjust this line, too, to make it work. I guess one is for new categories and one is for editing categories?
Code:
$name = $IN[ "name_".$this_cat['c_id'] ];
if( strlen($name) > 32 || strlen($name) < 4 )
|
![]() |
|
|