hm, I am passing a custom field to php variable like this:
<?php
$body = '{body}';
?>
Problem: when the body has single quotes (’) in it, it cannot be parsed (eval() parsing error in core.functions.php)
I already tried this one, but it doesn’t solve the problem:
<?php
$myVar = <<< EOD
{my_ee_var}
EOD;?>
anyone got an idea?
TIA!
