From 1981196e99a84e1ad1f8e817f74bda730ba6fe88 Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Tue, 4 Oct 2005 21:39:47 +0000 Subject: - some bugfixes git-svn-id: file:///svn/phpbb/trunk@5255 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/functions_privmsgs.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'phpBB/includes/functions_privmsgs.php') diff --git a/phpBB/includes/functions_privmsgs.php b/phpBB/includes/functions_privmsgs.php index 769f415169..7283a72e37 100644 --- a/phpBB/includes/functions_privmsgs.php +++ b/phpBB/includes/functions_privmsgs.php @@ -1232,7 +1232,7 @@ function submit_pm($mode, $subject, &$data, $update_message, $put_in_outbox = tr 'folder_id' => PRIVMSGS_NO_BOX, 'new' => 1, 'unread' => 1, - 'forwarded' => ($mode == 'forward') ? 1 : 0)) + 'forwarded' => ($mode == 'forward') ? 1 : 0 ); } @@ -1243,7 +1243,7 @@ function submit_pm($mode, $subject, &$data, $update_message, $put_in_outbox = tr case 'mysql': case 'mysql4': case 'mysqli': - $db->sql_query('INSERT INTO ' . PRIVMSGS_TO_TABLE . ' ' . $db->sql_build_array('MULTI_INSERT', $sql_ary); + $db->sql_query('INSERT INTO ' . PRIVMSGS_TO_TABLE . ' ' . $db->sql_build_array('MULTI_INSERT', $sql_ary)); break; default: -- cgit v1.2.1