mirror of
https://github.com/sbrl/Pepperminty-Wiki.git
synced 2024-11-25 05:22:59 +00:00
Fix concatenation error
This commit is contained in:
parent
367b6da149
commit
6969417004
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ register_module([
|
||||||
if($thread_comment->id == $new_comment->id)
|
if($thread_comment->id == $new_comment->id)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
$email_body = "Hello, {username}!\n" +
|
$email_body = "Hello, {username}!\n" .
|
||||||
"It's $settings->sitename here, letting you know that " .
|
"It's $settings->sitename here, letting you know that " .
|
||||||
"someone replied to your comment (or a reply to your comment) on $env->page.\n" .
|
"someone replied to your comment (or a reply to your comment) on $env->page.\n" .
|
||||||
"\n" .
|
"\n" .
|
||||||
|
|
Loading…
Reference in a new issue