Log in

View Full Version : Category Name Limit


Digital Jedi
08-02-2007, 01:35 AM
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?

MrZeropage
08-02-2007, 06:13 PM
open /admincp/arcade.php and search forif( empty($name) || strlen($name) > 32 || strlen($name) < 4 )

Digital Jedi
08-02-2007, 08:06 PM
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?

$name = $IN[ "name_".$this_cat['c_id'] ];
if( strlen($name) > 32 || strlen($name) < 4 )