the forum description field is limited to 250 chars in the database structure. Running this command will change this behaviour:
ALTER TABLE `forum` CHANGE `description` `description` MEDIUMTEXT NOT NULL
(Back up your db and use it in your own risk).
Then database field will be able to accept more than 250 chars for forum descriptions and you should be fine provided that admin/forum.php does not restrict/cripple your entered text as well. If so, you need to hack forum.php so as to remove this restriction either.
|