aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/posting.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2006-01-14 14:34:46 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2006-01-14 14:34:46 +0000
commit0c03b4e45ea0684afa4188e9766b170fd3627d3e (patch)
treed6fc38541b48830eb31dd6bcda630c223d46366a /phpBB/posting.php
parent5ae050ccd21e5b942768172658f68f4b50a50b43 (diff)
downloadforums-0c03b4e45ea0684afa4188e9766b170fd3627d3e.tar
forums-0c03b4e45ea0684afa4188e9766b170fd3627d3e.tar.gz
forums-0c03b4e45ea0684afa4188e9766b170fd3627d3e.tar.bz2
forums-0c03b4e45ea0684afa4188e9766b170fd3627d3e.tar.xz
forums-0c03b4e45ea0684afa4188e9766b170fd3627d3e.zip
- assign user rank
- only a few very tiny bugfixes git-svn-id: file:///svn/phpbb/trunk@5451 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/posting.php')
-rw-r--r--phpBB/posting.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php
index b798f5c119..36e4ff1dd0 100644
--- a/phpBB/posting.php
+++ b/phpBB/posting.php
@@ -1668,7 +1668,7 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $u
default:
foreach ($sql_insert_ary as $ary)
{
- $db->sql_query('INSERT INTO ' . PRIVMSGS_TO_TABLE . ' ' . $db->sql_build_array('INSERT', $sql_insert_ary));
+ $db->sql_query('INSERT INTO ' . PRIVMSGS_TO_TABLE . ' ' . $db->sql_build_array('INSERT', $ary));
}
break;
}