Navigation Menu

Skip to content

Commit

Permalink
Merge pull request #503 from bramley/missing_forward_footer
Browse files Browse the repository at this point in the history
Use the correct variable for the custom forward footer when forwarding
  • Loading branch information
Sam Tuke committed Mar 18, 2019
2 parents 7bb3f0f + 29afd8f commit 655a778
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public_html/lists/admin/sendemaillib.php
Expand Up @@ -237,7 +237,7 @@ function sendEmail($messageid, $email, $hash, $htmlpref = 0, $rssitems = array()
} else {
//0013076: different content when forwarding 'to a friend'
if (FORWARD_ALTERNATIVE_CONTENT) {
$text['footer'] = stripslashes($messagedata['forwardfooter']);
$text['footer'] = stripslashes($cached[$messageid]['footer']);
} else {
$text['footer'] = getConfig('forwardfooter');
}
Expand Down

0 comments on commit 655a778

Please sign in to comment.