diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2005-10-03 15:21:00 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2005-10-03 15:21:00 +0000 |
commit | ed9bac63e592670fee0c750d80959820b6dca2d4 (patch) | |
tree | 84a2b1ce842082c6df260c0234cfeea704ffef6b | |
parent | 72e93472b0d4cccd97fbc56a8e3d709c5e95894f (diff) | |
download | forums-ed9bac63e592670fee0c750d80959820b6dca2d4.tar forums-ed9bac63e592670fee0c750d80959820b6dca2d4.tar.gz forums-ed9bac63e592670fee0c750d80959820b6dca2d4.tar.bz2 forums-ed9bac63e592670fee0c750d80959820b6dca2d4.tar.xz forums-ed9bac63e592670fee0c750d80959820b6dca2d4.zip |
fix tiny bug. ;)
git-svn-id: file:///svn/phpbb/trunk@5249 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/posting.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php index 2c80ae7a79..81556660e6 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -1631,7 +1631,7 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $u $db->sql_freeresult($result); } - $sql_insert_ary = array() + $sql_insert_ary = array(); for ($i = 0, $size = sizeof($poll['poll_options']); $i < $size; $i++) { if (trim($poll['poll_options'][$i])) |