aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2008-08-30 23:57:11 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2008-08-30 23:57:11 +0000
commit5903066d45815804a7329d193bf27f6f03eaffc9 (patch)
tree348de2c797dfbd096fd01bbd2a37dbf178bcce27
parentee7b8834e3fff0c2734740288617f7879cb80ff6 (diff)
downloadforums-5903066d45815804a7329d193bf27f6f03eaffc9.tar
forums-5903066d45815804a7329d193bf27f6f03eaffc9.tar.gz
forums-5903066d45815804a7329d193bf27f6f03eaffc9.tar.bz2
forums-5903066d45815804a7329d193bf27f6f03eaffc9.tar.xz
forums-5903066d45815804a7329d193bf27f6f03eaffc9.zip
fix missing user_id entry to properly populate to the email template
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8799 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r--phpBB/includes/functions_posting.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php
index ce99086a74..52a88848ef 100644
--- a/phpBB/includes/functions_posting.php
+++ b/phpBB/includes/functions_posting.php
@@ -1251,6 +1251,7 @@ function user_notification($mode, $subject, $topic_title, $forum_name, $forum_id
$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'];
+ $msg_list_ary[$row['template']][$pos]['user_id']= $row['user_id'];
}
unset($msg_users);