Bug in function encryptx(), solution provided here
-
For some strange reason, you are doing this in mentioned function:
$tmp = explode(“?”, $content);
$content = $tmp[0];Which effectively splits the content at the first ? character. So if you run your regular page/post content through this function, it will butcher the content.
The fix:
Comment out those two lines.
- The topic ‘Bug in function encryptx(), solution provided here’ is closed to new replies.