The function token_replace() takes 3 parameters, $text, $data and $options. The function _auto_nodetitle_patternprocessor() calls token_replace with the second and third parameter merged in to one.

Old function call
$output = token_replace($pattern, array('node' => $node, 'sanitize' => FALSE));

Correct function call
$output = token_replace($pattern, array('node' => $node), array('sanitize' => FALSE));

Comments

fago’s picture

Status: Active » Fixed

thanks, fixed.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.