1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 12:48:24 +01:00

Avoid error in PHP8.

This commit is contained in:
Cameron 2021-10-18 13:32:35 -07:00
parent 236248503a
commit c8e48970ce

View File

@ -747,7 +747,7 @@ class poll
<td class='forumheader3' style='width:80%' class='forumheader3'><input class='tbox' type='text' name='poll_title' size='70' value='".$tp->post_toForm(vartrue($_POST['poll_title']))."' maxlength='200' /></td>
</tr>";
$option_count = (count(vartrue($_POST['poll_option'])) ? count($_POST['poll_option']) : 1);
$option_count = !empty($_POST['poll_option']) ? count($_POST['poll_option']) : 1;
$text .= "
<tr>
<td class='forumheader3' style='width:20%'>".POLLAN_4."</td>