In metakeywords table, keyword_text is type char(255). So when you concat keywords in modify.php, you have between keywords 200 spaces...
I propose to change char(255) to varchar(255).
You can find a patch to fix this.
The following would alter an existing table under mysql:
alter table metakeywords change column keyword_text keyword_text varchar(255);
Yes, and my patch fix this in postgresql. Could you commit it?
Hi,
This patch is still open. What are the plan to apply it ?
Regards,
Log in to post a comment.
The following would alter an existing table under mysql:
alter table metakeywords change column keyword_text keyword_text varchar(255);
The following would alter an existing table under mysql:
alter table metakeywords change column keyword_text keyword_text varchar(255);
Yes, and my patch fix this in postgresql. Could you commit it?
Hi,
This patch is still open.
What are the plan to apply it ?
Regards,