Welcome to ProjeQtOr new Forum. We migrated old forum to the new website.
You will find all your posts here, with your usual account.
Just one point : you’ll have to reinitialize your password. Use “Lost password” feature.
Hi,
I use last version base on mysql and php.
All is fine with charset utf-8 but ck-editor and dojo editor seems to not "understand" the UTF-8 charset.
How do I force editor to put accents in the right way ?
Here is a capture of the result in mysql :
- the first fiel was populated without ckeditor --> result good
- the second field is poupaled with ckeditor ---> bad
Regards,
Hi,
CK-Editor is an HTML editor, so to preserve compatibility it translates accentuated characters into their html equivalent.
It is not an issue, they will correctly be displayed.
Hi,
Thank you for your answer.
I should bette explain the case.
Accents are correctly displayed in the fields when I open an activity.
But they are not correctly displayed when I view a report (activity synthesis) :
Is it a problem with reporting page generation code ?
OK,
This is easily fixed replacing line 237 in report/joblist.php from
echo '' . mb_strtoupper($activity->description, 'UTF-8') . ' ';
to
echo '' . $activity->description . ' ';
Hi,
Thanks, It works great !
Regards