aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorrxu <rxu@mail.ru>2011-04-03 01:00:21 +0800
committerrxu <rxu@mail.ru>2011-04-03 01:00:21 +0800
commitd1bd5962c75fc87469694ae93829a5800c30c6cc (patch)
tree143382c491b4982d9b9762ab3691281e133b90e7 /phpBB/includes
parent4091f873eaa108cebd3192ede979ce61ead09238 (diff)
downloadforums-d1bd5962c75fc87469694ae93829a5800c30c6cc.tar
forums-d1bd5962c75fc87469694ae93829a5800c30c6cc.tar.gz
forums-d1bd5962c75fc87469694ae93829a5800c30c6cc.tar.bz2
forums-d1bd5962c75fc87469694ae93829a5800c30c6cc.tar.xz
forums-d1bd5962c75fc87469694ae93829a5800c30c6cc.zip
[ticket/6712] Pass $post_data by the value instead of by the reference.
PHPBB3-6712
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/functions_posting.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php
index 041b549cd6..ab346afb38 100644
--- a/phpBB/includes/functions_posting.php
+++ b/phpBB/includes/functions_posting.php
@@ -2614,7 +2614,7 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $u
/*
* Handle topic bumping
*/
-function bump_topic($forum_id, $topic_id, &$post_data, $current_time = false)
+function bump_topic($forum_id, $topic_id, $post_data, $current_time = false)
{
global $config, $db, $user, $phpEx, $phpbb_root_path;