The cf_profile plugin shows a PHP error in an input field if the field value isn't found in the $_POST array
Fix: make the preg_replaces in lines 256 & 270 (approx) include an if clause
Bob
Fix: make the preg_replaces in lines 256 & 270 (approx) include an if clause
$namematch = preg_replace($pattern_name, 'name="${2}" value="<?php if ( isset($MyForm->posted[\'${2}\']) ) echo $MyForm->posted[\'${2}\']; ?>"', $valuematch);
Bob