I have a group Newsletter. When I try to upload the file custom_email_Newsletter.tpl on the server, because of SO this is renamed to custom_email_newsletter.tpl !
modifying all lines
- Code: Select all
if (file_exists($phpbb_root_path . "language/lang_" . $current_lang . "/email/custom_email_".$group_name.".tpl"))
{
$emailer->use_template("custom_email_".$group_name, $current_lang);
}
else
{
if (file_exists($phpbb_root_path . "language/lang_" . $board_config['default_lang'] . "/email/custom_email_".$group_name.".tpl"))
{
$emailer->use_template("custom_email_".$group_name,$board_config['default_lang']);
} else
{
$emailer->use_template("admin_send_email", $current_lang);
}
}
replaced with
- Code: Select all
if (file_exists($phpbb_root_path . "language/lang_" . $current_lang . "/email/custom_email_".strtolower($group_name).".tpl"))
{
$emailer->use_template("custom_email_".strtolower($group_name), $current_lang);
}
else
{
if (file_exists($phpbb_root_path . "language/lang_" . $board_config['default_lang'] . "/email/custom_email_".strtolower($group_name).".tpl"))
{
$emailer->use_template("custom_email_".strtolower($group_name),$board_config['default_lang']);
} else
{
$emailer->use_template("admin_send_email", $current_lang);
}
}

