2
This is due to the DB structure. You need to change
line 18 in
randomquote/sql/mysql.sql from
texto varchar(255) NOT NULL default '',
...to
texto text NOT NULL default '',
Uninstall and reinstall the module.
BUT, if you have already added a bunch of quotes, and don't want to loose them, the procedure is a little tedious.
First dump the table
YOURDBPREFIX_citas (you only need the INSERT statemtents).
Next uninstall the module (DB tables don't get updated via update script I've been told).
Then reinstall, and run the INSERT statments.
This works, as I just tested it
Thanks for posting this question. Just noticed this the other day, and hadn't bothered looking into it,
up to now, due to your posting
THANX