Closed (fixed)
Project:
Automatic Nodetitles
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
24 May 2011 at 02:35 UTC
Updated:
21 Jun 2011 at 11:41 UTC
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
Comment #1
fagothanks, fixed.