Tags with accentuated characters

In this board you can talk about general questions about phpMyFAQ

Moderator: Thorsten

Post Reply
guillaume
Posts: 27
Joined: Tue Sep 01, 2009 2:56 pm
Location: Montreal, QC, Canada
Contact:

Tags with accentuated characters

Post by guillaume »

Hi,

When creating/editing a faq In phpMyFAQ version 2.5.3, the tags with accented characters are not shown properly.

See image here
Image
[Add a faq window]


Thanks!
Guillaume
Last edited by guillaume on Fri Oct 02, 2009 7:34 pm, edited 1 time in total.
Thorsten
Posts: 15724
Joined: Tue Sep 25, 2001 11:14 am
Location: #phpmyfaq
Contact:

Re: Tags with

Post by Thorsten »

Hi Guillaume,

are these special french characters? If yes, please try this:

Open admin/ajax.tags_list.php, goto line 61 and change

Code: Select all

            print $tagName . "\n";
to

Code: Select all

            print utf8_decode($tagName) . "\n";
Does that fix the issue?

bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
guillaume
Posts: 27
Joined: Tue Sep 01, 2009 2:56 pm
Location: Montreal, QC, Canada
Contact:

Re: Tags with accentuated character

Post by guillaume »

Hi Thorsten,

They are french characters.

I did the modification but it does not work.

Now I still see question marks but plain (ie not on a black square).

Image


Thanks again for your help!
Guillaume
Thorsten
Posts: 15724
Joined: Tue Sep 25, 2001 11:14 am
Location: #phpmyfaq
Contact:

Re: Tags with accentuated characters

Post by Thorsten »

Hi,

please try utf8_encode() instead.

bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
guillaume
Posts: 27
Joined: Tue Sep 01, 2009 2:56 pm
Location: Montreal, QC, Canada
Contact:

Re: Tags with accentuated characters

Post by guillaume »

Yep!

That did the trick.

Thanks!
Guillaume
Thorsten
Posts: 15724
Joined: Tue Sep 25, 2001 11:14 am
Location: #phpmyfaq
Contact:

Re: Tags with accentuated characters

Post by Thorsten »

Hi,

it's also fixed for phpMyFAQ 2.5.3 and 2.6.0-alpha.

bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
Post Reply