Download & Extend

Signup confirmation mail subject not translatable

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

#3

Status:active» needs review
nobody click here