mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
Merge remote-tracking branch 'marc1706/ticket/11488' into develop
* marc1706/ticket/11488: [ticket/11488] Use correct base class in email notification method
This commit is contained in:
commit
b43ed11470
2 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ if (!defined('IN_PHPBB'))
|
||||||
*
|
*
|
||||||
* @package notifications
|
* @package notifications
|
||||||
*/
|
*/
|
||||||
class phpbb_notification_method_email extends phpbb_notification_method_base
|
class phpbb_notification_method_email extends phpbb_notification_method_messenger_base
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Get notification method name
|
* Get notification method name
|
||||||
|
|
|
@ -78,7 +78,7 @@ abstract class phpbb_notification_method_messenger_base extends phpbb_notificati
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
$messenger->template($email_template_base_dir . $notification->get_email_template(), $user['user_lang']);
|
$messenger->template($template_dir_prefix . $notification->get_email_template(), $user['user_lang']);
|
||||||
|
|
||||||
$messenger->to($user['user_email'], $user['username']);
|
$messenger->to($user['user_email'], $user['username']);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue