I want to store a large data in a customfield.
Its well stored, but when I show it within a function using $params I see its trunked at the post of the | char.
How can I store something that got '|'?
I found this code:
on includes/customfieldfunctions.php
if (( $fieldtype != "link" && strpos( $customfieldval, "|" ) )) {
$customfieldval = explode( "|", $customfieldval );
$customfieldval = trim( $customfieldval[1] );
}
Why this needs to be done?
How should I scape that '|' ?