diff options
| -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 8cacac2910..7c36f40ca7 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -1297,7 +1297,7 @@ $attachment_data = $message_parser->attachment_data;  $filename_data = $message_parser->filename_data;  $post_data['post_text'] = $message_parser->message; -if (sizeof($post_data['poll_options']) && $post_data['poll_title']) +if (sizeof($post_data['poll_options']) || $post_data['poll_title'])  {  	$message_parser->message = $post_data['poll_title'];  	$message_parser->bbcode_uid = $post_data['bbcode_uid']; | 
