diff options
author | uckelman <uckelman@nomic.net> | 2010-11-22 22:08:50 +0000 |
---|---|---|
committer | uckelman <uckelman@nomic.net> | 2010-11-22 22:08:50 +0000 |
commit | 4b810d86950d0125d5f16b80defd505f540a8bad (patch) | |
tree | 3028c72e038b35f8819b2db820682db6f4162a7f | |
parent | ed6daa57194c94e7fd0f311dd190168314350d23 (diff) |
find_destination is a member function.
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@7476 67b53d14-2c14-4ace-a08f-0dab2b34000c
-rw-r--r-- | src/MailmanToPhpBB3.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/MailmanToPhpBB3.php b/src/MailmanToPhpBB3.php index 9d64878..40822e6 100644 --- a/src/MailmanToPhpBB3.php +++ b/src/MailmanToPhpBB3.php @@ -55,7 +55,7 @@ class MailmanToPhpBB3 { try { list($postType, $forumId, $topicId) = - find_destination($source, $inReplyTo, $messageId); + $this->find_destination($source, $inReplyTo, $messageId); $this->logger->info( $messageId . ' will be posted to ' . $forumId . ':' . $topicId); |