aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_posting.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2015-10-12 21:56:09 +0200
committerMarc Alexander <admin@m-a-styles.de>2015-10-12 21:56:09 +0200
commit75e5e2471e7b6b9e1d605f0c3cce5f1fbd373ac0 (patch)
treeb5d4f73f0d96b71515cacc7ecce44e01d49b089e /phpBB/includes/functions_posting.php
parent578ee077c114f63a6de0c277669ba91bd9f1219f (diff)
downloadforums-75e5e2471e7b6b9e1d605f0c3cce5f1fbd373ac0.tar
forums-75e5e2471e7b6b9e1d605f0c3cce5f1fbd373ac0.tar.gz
forums-75e5e2471e7b6b9e1d605f0c3cce5f1fbd373ac0.tar.bz2
forums-75e5e2471e7b6b9e1d605f0c3cce5f1fbd373ac0.tar.xz
forums-75e5e2471e7b6b9e1d605f0c3cce5f1fbd373ac0.zip
[ticket/14234] Get rid of undefined variables
PHPBB3-14234
Diffstat (limited to 'phpBB/includes/functions_posting.php')
-rw-r--r--phpBB/includes/functions_posting.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php
index 97daab8887..d94edc4257 100644
--- a/phpBB/includes/functions_posting.php
+++ b/phpBB/includes/functions_posting.php
@@ -1904,8 +1904,8 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $u
extract($phpbb_dispatcher->trigger_event('core.submit_post_modify_sql_data', compact($vars)));
$poll = $poll_ary;
$data = $data_ary;
- unset($poll);
- unset($data);
+ unset($poll_ary);
+ unset($data_ary);
// Submit new topic
if ($post_mode == 'post')