I looked at the forward_tracking function and the 1st few lines looked to be generating in the format "xxx emails sent to yyy recipients" yet that was not showing up on the report displayed.
The code looked like:
$output['forward_totals'] = '
' . variable_get('forward_total', 0) . ' ' . t('emails sent to') . ' ' . variable_get('forward_recipients', 0) . ' ' . t('recipients') . '
';
and I changed it to (on the chance that being consistent with all the stuff that did display would work):
$output['forward_totals'] = array('#markup' => '
' . variable_get('forward_total', 0) . ' ' . t('emails sent to') . ' ' . variable_get('forward_recipients', 0) . ' ' . t('recipients') . '
');
With the updated module the summary line is now displayed.
Comments
Comment #1
john.oltman commentedFix added to 7.x branch and will be in the next DEV build.
Comment #3
john.oltman commentedThis is now included in official release 7.x-1.4