I have a problem with the function htmlentities in form.php
htmlentities($this->objectValue); - line 1511
I use Greek (greek_general_ci for the base and ISO 8859-7 for the pages) are not supported by this function.
It will create a problem if Ι remove it?
Is there another solution?
Thanks.
Welcome to the nuBuilder Forums!
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Problem with the function htmlentities
Re: Problem with the function htmlentities
ailiad,
I'm fairly certain your problem will not happen in our next release (hopefully by the end of May).
That will be the first release that supports UFT-8.
Hopefully you can wait that long.
Steven
I'm fairly certain your problem will not happen in our next release (hopefully by the end of May).
That will be the first release that supports UFT-8.
Hopefully you can wait that long.
Steven
A short post is a good post.
-
- Posts: 3
- Joined: Wed May 05, 2010 11:12 pm
Re: Problem with the function htmlentities
I solved the problem by following these steps:
1. Convert the database to utf8
2. I changed the encoding to UTF-8
3. I used the function htmlentities in the form:
htmlentities (string, ENT_COMPAT, "UTF-8")
1. Convert the database to utf8
2. I changed the encoding to UTF-8
3. I used the function htmlentities in the form:
htmlentities (string, ENT_COMPAT, "UTF-8")
Re: Problem with the function htmlentities
ailiad,
Thanks for sharing your answer, it should be quite helpful for others
Steven
Thanks for sharing your answer, it should be quite helpful for others
Steven
A short post is a good post.