diff options
author | deva <deva> | 2008-11-25 15:50:05 +0000 |
---|---|---|
committer | deva <deva> | 2008-11-25 15:50:05 +0000 |
commit | 56b12d452c44374fc3f673578586387bd7840b36 (patch) | |
tree | 042f07eec1daac0d64dfb7137906a4e28cff73a5 | |
parent | 95cf39ed5f2b4b54d073c70cd88d0fef07da05ff (diff) |
Changed mail to include title of new post. Now also when quoting...
-rw-r--r-- | forum/utils/edit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/forum/utils/edit.php b/forum/utils/edit.php index d65d59e..20b5336 100644 --- a/forum/utils/edit.php +++ b/forum/utils/edit.php @@ -74,7 +74,7 @@ case "reply": $quote->add($post); $posts->thread->lastpost = time(); $posts->write(); - notify("forum", "New reply (quote): " . $FORUM_URL . "/?fid=". $fid . "&tid=" . $tid); + notify("forum", "New reply (quote) \"" . $title . "\": " . $FORUM_URL . "/?fid=". $fid . "&tid=" . $tid); } else { error("Message " . $pid . " not found!"); } |