Gossamer Forum
Home : Products : Links 2.0 : Discussions :

Simple Question I Think

Quote Reply
Simple Question I Think
Ok here the question that I have. I was adding in a category description and I got an error because apparently the maximum # of characters for the description field is set to 500. Where at and in what file can I change that number? I have looked, but I just can't seem to spot it. All help is appreciated, thanks!

Quote Reply
Re: Simple Question I Think In reply to
in category.def change the number in red here

%db_def = (
ID => [0, 'numer', 5, 8, 1, '', ''],
Name => [1, 'alpha', 40, 75, 1, '', '^[\w\d/_-]+$'],
Description => [2, 'alpha', '40x3', 500, 0, '', ''],
Related => [3, 'alpha', 0, 255, 0, '', ''],
'Meta Description' => [4, 'alpha', 40, 75, 0, '', ''],
'Meta Keywords' => [5, 'alpha', 40, 75, 0, '', ''],
Header => [6, 'alpha', 40, 75, 0, '', ''],
Footer => [7, 'alpha', 40, 75, 0, '', '']
);

-------------
Jeremy
Quote Reply
Re: Simple Question I Think In reply to
Excellent! Thanks so much for your help.