diff options
author | Nils Adermann <naderman@naderman.de> | 2011-11-18 20:31:26 +0100 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2011-11-18 20:31:26 +0100 |
commit | 4be9c70827c5d87bd654bae22095b8165a689ffa (patch) | |
tree | 34c1165792fc4a65c51d88b7fe561f1f2d005c19 /phpBB/includes/functions_posting.php | |
parent | 6894477b600f4a1ffaa6c8ce7fde45465e1f5c07 (diff) | |
parent | 4fae5eef6829b997e39099e561cb88cb5d248ff8 (diff) | |
download | forums-4be9c70827c5d87bd654bae22095b8165a689ffa.tar forums-4be9c70827c5d87bd654bae22095b8165a689ffa.tar.gz forums-4be9c70827c5d87bd654bae22095b8165a689ffa.tar.bz2 forums-4be9c70827c5d87bd654bae22095b8165a689ffa.tar.xz forums-4be9c70827c5d87bd654bae22095b8165a689ffa.zip |
Merge remote-tracking branch 'github-nickvergessen/ticket/9776' into develop-olympus
* github-nickvergessen/ticket/9776:
[ticket/9776] Delete poll if no poll options were submitted.
Diffstat (limited to 'phpBB/includes/functions_posting.php')
-rw-r--r-- | phpBB/includes/functions_posting.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php index a641afbaed..77d92e26e2 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -1870,9 +1870,9 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $u case 'edit_topic': case 'edit_first_post': - if (isset($poll['poll_options']) && !empty($poll['poll_options'])) + if (isset($poll['poll_options'])) { - $poll_start = ($poll['poll_start']) ? $poll['poll_start'] : $current_time; + $poll_start = ($poll['poll_start'] || empty($poll['poll_options'])) ? $poll['poll_start'] : $current_time; $poll_length = $poll['poll_length'] * 86400; if ($poll_length < 0) { @@ -2075,11 +2075,11 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $u } // Update Poll Tables - if (isset($poll['poll_options']) && !empty($poll['poll_options'])) + if (isset($poll['poll_options'])) { $cur_poll_options = array(); - if ($poll['poll_start'] && $mode == 'edit') + if ($mode == 'edit') { $sql = 'SELECT * FROM ' . POLL_OPTIONS_TABLE . ' |