diff options
author | Joel Uckelman <uckelman@nomic.net> | 2012-02-27 05:08:35 +0100 |
---|---|---|
committer | Joel Uckelman <uckelman@nomic.net> | 2012-02-27 05:08:35 +0100 |
commit | 809671070efe8ff29c633e9be03d0d41a5cf6560 (patch) | |
tree | 2206afee144a8141fcd22053370b9ddd0c84f5e4 /src/PhpBB3ToMailman.php | |
parent | 8f10606385c6e0a77177e48d4072b5eb7c52da68 (diff) |
Renamed functions in build_email.php.
Diffstat (limited to 'src/PhpBB3ToMailman.php')
-rw-r--r-- | src/PhpBB3ToMailman.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/PhpBB3ToMailman.php b/src/PhpBB3ToMailman.php index 08fb244..9e90b28 100644 --- a/src/PhpBB3ToMailman.php +++ b/src/PhpBB3ToMailman.php @@ -104,11 +104,11 @@ class PhpBB3ToMailman { dirname($_SERVER['SCRIPT_NAME']); $editId = $this->bridge->reserveEditId($postId); - $messageId = build_message_id($postId, $editId, - $time, $_SERVER['SERVER_NAME']); + $messageId = build_email_message_id($postId, $editId, + $time, $_SERVER['SERVER_NAME']); # Assemble the message headers - $headers = build_headers( + $headers = build_email_headers( $userName, $userEmail, $to, @@ -125,10 +125,10 @@ class PhpBB3ToMailman { # Build the message body $parser = new BBCodeParser(); $text = $parser->parse($data['message'], $data['bbcode_uid']); - $text = build_text($text, $mode == 'edit'); + $text = build_email_text($text, $mode == 'edit'); # Build the bridge footer - $footer = build_footer($postId, $forumURL); + $footer = build_email_footer($postId, $forumURL); $attachments = array(); foreach ($data['attachment_data'] as $a) { @@ -146,7 +146,7 @@ class PhpBB3ToMailman { } # Build the message body - $body = build_body($headers, $text, $attachments, $footer); + $body = build_email_body($headers, $text, $attachments, $footer); # Register the message $seen = !$this->bridge->registerByEditId($editId, $messageId, $inReplyTo); |