Looking into this.
Posted: February 16th, 2014, 08:17 PM
Look easy enough to fix.
In Birthday-Scheduled.php, at line 79, replace $emaildata['body'] with $body -- and tell me if this works better. ;)
At line 62, try replacing the array with:
$replacements = array(
'{REGARDS}' => $txt['regards_team'],
'{FORUMNAME}' => $mbname,
'{SCRIPTURL}' => SCRIPT,
);
Keep me posted!
Posted: February 17th, 2014, 11:55 AM
It probably won't work, I just looked an it's a strtr, so it won't replace stuff that has already been touched.
So, it'll probably have to be:
$replacements = array(
'{FORUMNAME}' => $mbname,
'{SCRIPTURL}' => SCRIPT,
'{REGARDS}' => str_replace('{FORUMNAME}', $mbname, $txt['regards_team']),
);
Still, if you could try the first one, that would be nice...