diff options
author | uckelman <uckelman@nomic.net> | 2010-04-30 16:39:40 +0000 |
---|---|---|
committer | uckelman <uckelman@nomic.net> | 2010-04-30 16:39:40 +0000 |
commit | 03c94fad7650f4075ee2d289f8b985cd8f8daef7 (patch) | |
tree | 11cf328d3b77e31a3a564d540bb566f58efbebca /src | |
parent | 989b180ba445bc8397848a50e468653de3598b7f (diff) |
Added edit id to message-id.
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6782 67b53d14-2c14-4ace-a08f-0dab2b34000c
Diffstat (limited to 'src')
-rw-r--r-- | src/Util.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Util.php b/src/Util.php index f06718d..38aec11 100644 --- a/src/Util.php +++ b/src/Util.php @@ -4,8 +4,8 @@ function throw_if_null($arg) { if ($arg === null) throw new Exception('argument is null'); } -function build_message_id($time, $postId, $forumHost) { - return "<$time.$postId.bridge@$forumHost>"; +function build_message_id($postId, $editId, $time, $forumHost) { + return "<$time.$postId.$editId.bridge@$forumHost>"; } /* |