aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/posting.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-10-12 15:29:18 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-10-12 15:29:18 +0000
commit9da094fec24666b80349cc73978c26ba76105153 (patch)
treea636b1626bd2bbc0e19b3bbf3b774105a7aeac9f /phpBB/posting.php
parent90ad130d48893a63aea1db7e61ea9d39c6018cb1 (diff)
downloadforums-9da094fec24666b80349cc73978c26ba76105153.tar
forums-9da094fec24666b80349cc73978c26ba76105153.tar.gz
forums-9da094fec24666b80349cc73978c26ba76105153.tar.bz2
forums-9da094fec24666b80349cc73978c26ba76105153.tar.xz
forums-9da094fec24666b80349cc73978c26ba76105153.zip
Updated the various "users of emailer", fixed issue(!) of jabber using the email address as the uid, blah fixes, blah, blah di blah yakety smackety
git-svn-id: file:///svn/phpbb/trunk@4583 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/posting.php')
-rw-r--r--phpBB/posting.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php
index 08d627d42a..736452d10c 100644
--- a/phpBB/posting.php
+++ b/phpBB/posting.php
@@ -1246,7 +1246,7 @@ function user_notification($mode, $subject, $topic_title, $forum_name, $forum_id
$msg_list_ary[$row['template']][$pos]['method'] = $row['method'];
$msg_list_ary[$row['template']][$pos]['email'] = $row['user_email'];
- $msg_list_ary[$row['template']][$pos]['user_jabber'] = $row['user_jabber'];
+ $msg_list_ary[$row['template']][$pos]['jabber'] = $row['user_jabber'];
$msg_list_ary[$row['template']][$pos]['name'] = $row['username'];
$msg_list_ary[$row['template']][$pos]['lang'] = $row['user_lang'];
}
@@ -1260,6 +1260,7 @@ function user_notification($mode, $subject, $topic_title, $forum_name, $forum_id
$messenger->replyto($config['board_email']);
$messenger->to($addr['email'], $addr['name']);
+ $messenger->im($addr['jabber'], $addr['name']);
$messenger->assign_vars(array(
'EMAIL_SIG' => $email_sig,