The Generation
Forum Replies Created
-
This issue is still not resolved.
Can you please set this as a priority so it can be resolved as soon as possible?Best regards,
The GenerationThis still doesn’t work. I saw that you used utf8_encode in one file and that’s most likely the code causing the issue.
If the text is already in utf8 then it just makes the text garbage.
In file class-backend-calendar-schedule.php on line 67 I changed this:
$schedule = json_decode(stripslashes(utf8_encode($_POST[‘schedule’])));
To this:
$schedule = json_decode(stripslashes($_POST[‘schedule’]));
And now it works great 🙂
There is no need to encode strings to utf8 if the database has the right encoding which it probably has if you’re from Sweden like me or another country that has “strange” characters.
Thanks in advance.
This problem has unfortunately not been resolved yet, and we would be very grateful if the author for this plugin could resolve this issue as soon as possible in the right way.
Best regards,
The GenerationIt would be great if this could be resolved as soon as possible.
Please take a look at the notes in my first post in this thread, it might be the $schedule variable the problem occurs.
Best regards,
The GenerationIt’s the same for me.