diff --git a/modules/commands/ns_set.cpp b/modules/commands/ns_set.cpp index dc007289e..11210b8c6 100644 --- a/modules/commands/ns_set.cpp +++ b/modules/commands/ns_set.cpp @@ -426,11 +426,13 @@ class CommandNSSetEmail : public Command subject = subject.replace_all_cs("%e", nc->email); subject = subject.replace_all_cs("%E", new_email); + subject = subject.replace_all_cs("%n", nc->display); subject = subject.replace_all_cs("%N", Config->GetBlock("networkinfo")->Get("networkname")); subject = subject.replace_all_cs("%c", code); message = message.replace_all_cs("%e", nc->email); message = message.replace_all_cs("%E", new_email); + message = message.replace_all_cs("%n", nc->display); message = message.replace_all_cs("%N", Config->GetBlock("networkinfo")->Get("networkname")); message = message.replace_all_cs("%c", code);