I'm trying the faqbaker module on the last release of WebsiteBaker core in order to check if this module is now utf8 compliant and full compatible with WebsiteBaker core.
Unfortunately, the last release of faqbaker, 1.4.1, is a little buggy. You'll see how I'm trying to create a new category, then a new question with its answer.
1/ Creating a new category :
I create a new category whose name is :
category with an ' and an é and that's all
Then the admin page displays the category as :
category with an \' and an é and that\'s all
When I ask the edit page of the category, the category is displayed as :
category with an ' and an é and that's all
Finally, the faq page on the public website displays the category as :
category with an \' and an é and that\'s all
I think that there is a missing stripslashes somewhere in the code.
2/ Same test with a question and its answer :
I create a new question whose name and answer are :
question with an ' and an é and that's all
answer with an ' and an é and that's all
Then the admin page displays the question and the answer as :
question with an \' and an é ..
admin display answer with an \' and an é and that\'s all ..
When I ask the edit page of the category, the category is displayed as :
question with an \' and an é and that\'s all
answer with an \' and an é and that\'s all
If I cancel the edition of the question, the faq page on the public website displays the question and the answer as :
question with an ' and an é and that's all
answer with an \' and an é and that\'s all
If I validate the edition of the question, the faq page on the public website displays the question and the answer as :
question with an \' and an é and that\'s all
answer with an \\' and an é and that\\'s all
There is also one or two stripslashes missing in the code, and some utf8_decode utf8_encode also...
If anyone is strong enough to fix these bugs, a 1.4.2 release of faqbaker would be greatly appreciated.
Ploc