Posted by TheInspector on August 29, 2012 at 10:09pm
3 followers
| Project: | Signup |
| Version: | 7.x-1.x-dev |
| Component: | Themeability |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | needs review |
Issue Summary
$params = array(
'subject' => token_replace('Signup confirmation for [node:content-type]: [node:title]', array('node' => $node, 'signup' => $signup)),
'body' => token_replace($node->signup_confirmation_email, array('node' => $node, 'signup' => $signup, 'global' => NULL)),
'node' => $node,
'signup' => $signup,
);Shouldnt it look like the following:
$params = array(
'subject' => token_replace(t('Signup confirmation for [node:content-type]: [node:title]'), array('node' => $node, 'signup' => $signup)),
'body' => token_replace($node->signup_confirmation_email, array('node' => $node, 'signup' => $signup, 'global' => NULL)),
'node' => $node,
'signup' => $signup,
);
Comments
#1
+1
#2
Patch here.
#3