Any solutions?
Yes this is a bug, thanks for report this.
if do you want fix it open the file called RCCWP_WritePostPage.php
and in the line 414 you will found this line:
$customFieldHelp = htmlentities2($customField->help_text);
Just replace that line for this:
$customFieldHelp = $customField->help_text;
And now all should be work smoothly.
David.
My last solution is a little insecure because i put without escape
the help_text variable.
Now i'm going to offer you a new way to fix it.
In the same line (414) of the same file (RCWP_WritePostPage.php)
replace the that line for this:
$customFieldHelp = htmlentities($customField-
>help_text,ENT_COMPAT,'UTF-8');
now all should be work smoothly.
:)
by the way, what about localization? i couldn't find .po & .mo files
in a plugin directory. i would like to translate MF into Russian...
and the files for localization actually can you found it here:
http://github.com/hunk/Magic-Fields/tree/master/languages/
Thanks for your interest in translate Magic Fields into Russian.
David.