Index: language/en/email/topic_notify.txt =================================================================== --- language/en/email/topic_notify.txt (wersja 10190) +++ language/en/email/topic_notify.txt (kopia robocza) @@ -2,7 +2,7 @@ Hello {USERNAME}, -You are receiving this notification because you are watching the topic, "{TOPIC_TITLE}" at "{SITENAME}". This topic has received a reply since your last visit. You can use the following link to view the replies made, no more notifications will be sent until you visit the topic. +You are receiving this notification because you are watching the topic, "{TOPIC_TITLE}" at "{SITENAME}". This topic has received a reply by {AUTHOR_NAME} since your last visit. You can use the following link to view the replies made, no more notifications will be sent until you visit the topic. If you want to view the newest post made since your last visit, click the following link: {U_NEWEST_POST} Index: language/en/email/forum_notify.txt =================================================================== --- language/en/email/forum_notify.txt (wersja 10190) +++ language/en/email/forum_notify.txt (kopia robocza) @@ -2,7 +2,7 @@ Hello {USERNAME}, -You are receiving this notification because you are watching the forum, "{FORUM_NAME}" at "{SITENAME}". This forum has received a new reply to the topic "{TOPIC_TITLE}" since your last visit. You can use the following link to view the last unread reply, no more notifications will be sent until you visit the topic. +You are receiving this notification because you are watching the forum, "{FORUM_NAME}" at "{SITENAME}". This forum has received a new reply by {AUTHOR_NAME} to the topic "{TOPIC_TITLE}" since your last visit. You can use the following link to view the last unread reply, no more notifications will be sent until you visit the topic. {U_NEWEST_POST} Index: language/en/email/newtopic_notify.txt =================================================================== --- language/en/email/newtopic_notify.txt (wersja 10190) +++ language/en/email/newtopic_notify.txt (kopia robocza) @@ -2,7 +2,7 @@ Hello {USERNAME}, -You are receiving this notification because you are watching the forum, "{FORUM_NAME}" at "{SITENAME}". This forum has received a new topic since your last visit, "{TOPIC_TITLE}". You can use the following link to view the forum, no more notifications will be sent until you visit the forum. +You are receiving this notification because you are watching the forum, "{FORUM_NAME}" at "{SITENAME}". This forum has received a new topic since your last visit, "{TOPIC_TITLE}" by {AUTHOR_NAME}. You can use the following link to view the forum, no more notifications will be sent until you visit the forum. {U_FORUM} Index: includes/functions_posting.php =================================================================== --- includes/functions_posting.php (wersja 10190) +++ includes/functions_posting.php (kopia robocza) @@ -1321,6 +1321,7 @@ $messenger->assign_vars(array( 'USERNAME' => htmlspecialchars_decode($addr['name']), + 'AUTHOR_NAME' => htmlspecialchars_decode($user->data['username']), 'TOPIC_TITLE' => htmlspecialchars_decode($topic_title), 'FORUM_NAME' => htmlspecialchars_decode($forum_name),